Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

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)

Syntax

 
public Nullable<DateTimeOffset> CompletionTime { get; internal set; }
 
public:
property Nullable<DateTimeOffset> CompletionTime {
	Nullable<DateTimeOffset> get();
	internal: void set(Nullable<DateTimeOffset> value);
}
 
member CompletionTime : Nullable<DateTimeOffset> with get, internal set
 
Public Property CompletionTime As Nullable(Of DateTimeOffset)
	Get
	Friend Set
End Property

Property Value

Type: System.Nullable<DateTimeOffset>System::Nullable<DateTimeOffset>System.Nullable<DateTimeOffset>System.Nullable(Of DateTimeOffset)

A DateTimeOffset containing the completion time, or null if the operation has not completed.

Return to top