Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

DynamicTableEntity Class (Microsoft.WindowsAzure.Storage.Table)

A ITableEntity type which allows callers direct access to the property map of the entity. This class eliminates the use of reflection for serialization and deserialization.

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

Inheritance Hierarchy

System.::..Object
  Microsoft.WindowsAzure.Storage.Table.::..DynamicTableEntity

Syntax

 
public sealed class DynamicTableEntity : ITableEntity
 
public ref class DynamicTableEntity sealed : ITableEntity
 
[<Sealed>]
type DynamicTableEntity = 
    class
        interface ITableEntity
    end
 
Public NotInheritable Class DynamicTableEntity
	Implements ITableEntity

Constructors

NameDescription
System_CAPS_pubmethodDynamicTableEntity()()()()

Initializes a new instance of the DynamicTableEntity class.

System_CAPS_pubmethodDynamicTableEntity(String, String)(String^, String^)(String, String)(String, String)

Initializes a new instance of the DynamicTableEntity class with the specified partition key and row key.

System_CAPS_pubmethodDynamicTableEntity(String, String, String, IDictionary<String, EntityProperty>)(String^, String^, String^, IDictionary<String^, EntityProperty^>^)(String, String, String, IDictionary<String, EntityProperty>)(String, String, String, IDictionary(Of String, EntityProperty))

Initializes a new instance of the DynamicTableEntity class with the entity's partition key, row key, ETag (if available/required), and properties.

Properties

NameDescription
System_CAPS_pubpropertyETagETagETagETag

Gets or sets the entity's current ETag.

System_CAPS_pubpropertyItem[String]Item[String^]Item(String)Item(String)

Gets or sets the entity's property, given the name of the property.

System_CAPS_pubpropertyPartitionKeyPartitionKeyPartitionKeyPartitionKey

Gets or sets the entity's partition key.

System_CAPS_pubpropertyPropertiesPropertiesPropertiesProperties

Gets or sets the properties in the table entity, indexed by property name.

System_CAPS_pubpropertyRowKeyRowKeyRowKeyRowKey

Gets or sets the entity's row key.

System_CAPS_pubpropertyTimestampTimestampTimestampTimestamp

Gets or sets the entity's timestamp.

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.

Return to top