Share via


StorageData.Version Property

 

The version is a T:byte[] representation of the M:Etag property which is maintained by the Azure storage SDK. The etag represents the version of this entity as obtained from the server and by setting this property the etag is also updated. As for the id property, this property is not mapped to the actual storage table as its information is provided in the etag.

Namespace:   Microsoft.WindowsAzure.Mobile.Service
Assembly:  Microsoft.WindowsAzure.Mobile.Service.Storage (in Microsoft.WindowsAzure.Mobile.Service.Storage.dll)

Syntax

[NotMappedAttribute]
[IgnorePropertyAttribute]
public byte[] Version { get; set; }
public:
[NotMappedAttribute]
[IgnorePropertyAttribute]
property array<unsigned char>^ Version {
    virtual array<unsigned char>^ get() sealed;
    virtual void set(array<unsigned char>^ value) sealed;
}
[<NotMappedAttribute>]
[<IgnorePropertyAttribute>]
abstract Version : byte[] with get, set
[<NotMappedAttribute>]
[<IgnorePropertyAttribute>]
override Version : byte[] with get, set
<NotMappedAttribute>
<IgnorePropertyAttribute>
Public Property Version As Byte()

Property Value

Type: System.Byte[]

Implements

ITableData.Version

See Also

StorageData Class
Microsoft.WindowsAzure.Mobile.Service Namespace

Return to top