StorageData Class

 

An abstract implementation of the ITableData interface required by TableController<'TData> as well as an implementation of TableEntity required by Azure Table Storage. It provides a default mapping from the TableEntity properties including partition key, row key, and timestamp into the corresponding properties on ITableData.

This API is not CLS-compliant.

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

System.Object
  Microsoft.WindowsAzure.Storage.Table.TableEntity
    Microsoft.WindowsAzure.Mobile.Service.StorageData

[<AbstractClass>]
[<CLSCompliantAttribute(false)>]
type StorageData = 
    class
        inherit TableEntity
        interface ITableData
    end

NameDescription
System_CAPS_protmethodStorageData()

Initializes a new instance of the StorageData class.

System_CAPS_protmethodStorageData(String, String)

Initializes a new instance of the StorageData class with a given partitionKey and rowKey.

NameDescription
System_CAPS_pubpropertyCreatedAt

System_CAPS_pubpropertyDeleted

Indicates whether this entity has been marked for deletion.

System_CAPS_pubpropertyETag

(Inherited from TableEntity.)

System_CAPS_pubpropertyId

The id is composed by combining the M:PartitionKey and the M:RowKey using a CompositeTableKey instance which serializes the partition key and row key as a comma separated tuple of values. By setting this property, the partition key and row key will also get updated. As such the id property itself is not mapped to the actual storage table as it strictly contains the same information provided by the partition key and row key.

System_CAPS_pubpropertyPartitionKey

(Inherited from TableEntity.)

System_CAPS_pubpropertyRowKey

(Inherited from TableEntity.)

System_CAPS_pubpropertyTimestamp

(Inherited from TableEntity.)

System_CAPS_pubpropertyUpdatedAt

This property timestamp at which the entity was created. By setting this property, the M:Timestamp property is updated as well. The property is not mapped to the actual storage table as the information is maintained by the timestamp property.

System_CAPS_pubpropertyVersion

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.

NameDescription
System_CAPS_pubmethodEquals(Object)

(Inherited from Object.)

System_CAPS_protmethodFinalize()

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

(Inherited from Object.)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethodReadEntity(IDictionary<String, EntityProperty>, OperationContext)

(Inherited from TableEntity.)

System_CAPS_pubmethodToString()

(Inherited from Object.)

System_CAPS_pubmethodWriteEntity(OperationContext)

(Inherited from TableEntity.)

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: