Initializes a new instance of the
DynamicTableEntity class with the specified partition key and row key.
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 instance As New DynamicTableEntity(partitionKey, rowKey) |
Syntax
| Visual Basic |
|---|
Public Sub New ( _
partitionKey As String, _
rowKey As String _
) |
| C# |
|---|
public DynamicTableEntity (
string partitionKey,
string rowKey
) |
| C++ |
|---|
public:
DynamicTableEntity (
String^ partitionKey,
String^ rowKey
) |
| J# |
|---|
public DynamicTableEntity (
String partitionKey,
String rowKey
) |
| JScript |
|---|
public function DynamicTableEntity (
partitionKey : String,
rowKey : String
) |
Parameters
- partitionKey
A string containing the partition key value for the entity.
- rowKey
A string containing the row key value for the entity.
Remarks
Platforms
See Also