TableEntity Constructor (String, String)

Windows Runtime Azure Storage Client Library

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

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also