This topic has not yet been rated - Rate this topic

CloudStorageAccountStorageClientExtensions.CreateCloudTableClient Method

Creates the Table service client.

Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
'Usage
Dim account As CloudStorageAccount
Dim returnValue As CloudTableClient

returnValue = CloudStorageAccountStorageClientExtensions.CreateCloudTableClient(account)
[ExtensionAttribute] 
public static CloudTableClient CreateCloudTableClient (
	CloudStorageAccount account
)
/** @attribute ExtensionAttribute() */ 
public static CloudTableClient CreateCloudTableClient (
	CloudStorageAccount account
)
ExtensionAttribute 
public static function CreateCloudTableClient (
	account : CloudStorageAccount
) : CloudTableClient

Parameters

account

Type: Microsoft.WindowsAzure.CloudStorageAccount

The storage account.

Return Value

Type: Microsoft.WindowsAzure.StorageClient.CloudTableClient

A client object that specifies the Table service endpoint.

The following code example creates client objects for each of the storage services.

static void GetClientObjects()
{
    //Parse a connection string and return a reference to the storage account.
    CloudStorageAccount storageAccount = CloudStorageAccount.Parse(ConfigurationManager.AppSettings["StorageAccountConnectionString"]);

    //Create a client for the Blob service.
    CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();

    //Create a client for the Queue service.
    CloudQueueClient queueClient = storageAccount.CreateCloudQueueClient();

    //Create a client for the Blob service.
    CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
}

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Development Platforms

Windows Vista, Windows 7 and Windows Server 2008

Target Platforms

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ