Gets the time the copy operation completed, and indicates whether completion was due to a successful copy, the cancelling of the operation, or a failure.
Namespace: Microsoft.WindowsAzure.Storage.Blob
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As CopyState
Dim value As Nullable(Of DateTimeOffset)
value = instance.CompletionTime
|
Syntax
Visual Basic |
---|
Public Property CompletionTime As Nullable(Of DateTimeOffset) |
C# |
---|
public Nullable<DateTimeOffset> CompletionTime { get; } |
C++ |
---|
public:
property Nullable<DateTimeOffset> CompletionTime {
Nullable<DateTimeOffset> get ();
} |
J# |
---|
/** @property */
/** @attribute CompilerGeneratedAttribute() */
public Nullable<DateTimeOffset> get_CompletionTime ()
|
JScript |
---|
CompilerGeneratedAttribute
public function get CompletionTime () : Nullable<DateTimeOffset>
|
Property Value
A
DateTimeOffset containing the completion time, or
null
if the operation has not completed.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also