StorageData Constructors

Definition

Overloads

StorageData()

Initializes a new instance of the StorageData class.

StorageData(String, String)

Initializes a new instance of the StorageData class with a given partitionKey and rowKey.

StorageData()

Initializes a new instance of the StorageData class.

protected StorageData ();
Protected Sub New ()

Applies to

StorageData(String, String)

Initializes a new instance of the StorageData class with a given partitionKey and rowKey.

protected StorageData (string partitionKey, string rowKey);
new Microsoft.WindowsAzure.Mobile.Service.StorageData : string * string -> Microsoft.WindowsAzure.Mobile.Service.StorageData
Protected Sub New (partitionKey As String, rowKey As String)

Parameters

partitionKey
String

The partition key of the TableEntity to be initialized.

rowKey
String

The row key of the TableEntity to be initialized.

Applies to