Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Gets the the last-modified time for the blob, expressed as a UTC value.

Namespace:   Microsoft.WindowsAzure.Storage.Blob
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
public Nullable<DateTimeOffset> LastModified { get; internal set; }
 
public:
property Nullable<DateTimeOffset> LastModified {
	Nullable<DateTimeOffset> get();
	internal: void set(Nullable<DateTimeOffset> value);
}
 
member LastModified : Nullable<DateTimeOffset> with get, internal set
 
Public Property LastModified 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 blob's last-modified time, in UTC format.

Return to top