Initializes a new instance of the
DynamicTableEntity class with the entity's partition key, row key, ETag (if available/required), and properties.
Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim partitionKey As String
Dim rowKey As String
Dim etag As String
Dim properties As IDictionary(Of String, EntityProperty)
Dim instance As New DynamicTableEntity(partitionKey, rowKey, etag, properties) |
Syntax
Visual Basic |
---|
Public Sub New ( _
partitionKey As String, _
rowKey As String, _
etag As String, _
properties As IDictionary(Of String, EntityProperty) _
) |
C# |
---|
public DynamicTableEntity (
string partitionKey,
string rowKey,
string etag,
IDictionary<string,EntityProperty> properties
) |
C++ |
---|
public:
DynamicTableEntity (
String^ partitionKey,
String^ rowKey,
String^ etag,
IDictionary<String^, EntityProperty^>^ properties
) |
J# |
---|
public DynamicTableEntity (
String partitionKey,
String rowKey,
String etag,
IDictionary<String,EntityProperty> properties
) |
JScript |
---|
public function DynamicTableEntity (
partitionKey : String,
rowKey : String,
etag : String,
properties : IDictionary<String,EntityProperty>
) |
Parameters
- partitionKey
A string containing the partition key value for the entity.
- rowKey
A string containing the row key value for the entity.
- etag
A string containing the ETag for the entity.
- properties
An IDictionary object containing the entity's properties, indexed by property name.
Remarks
Platforms
See Also