DynamicTableEntity Constructor (String, String, String, IDictionary)

Windows Runtime Azure Storage Client Library

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

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