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