[This topic is part of the Microsoft Azure Storage Client Library 1.7, which has been deprecated. See
Storage Client Library for the latest version.]
Creates a new Queue service client.
Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
Usage
Visual Basic |
---|
Dim account As CloudStorageAccount
Dim returnValue As CloudQueueClient
returnValue = CloudStorageAccountStorageClientExtensions.CreateCloudQueueClient(account) |
Syntax
Visual Basic |
---|
<ExtensionAttribute> _
Public Shared Function CreateCloudQueueClient ( _
account As CloudStorageAccount _
) As CloudQueueClient |
C# |
---|
[ExtensionAttribute]
public static CloudQueueClient CreateCloudQueueClient (
CloudStorageAccount account
) |
C++ |
---|
[ExtensionAttribute]
public:
static CloudQueueClient^ CreateCloudQueueClient (
CloudStorageAccount^ account
) |
Parameters
- account
Type: Microsoft.WindowsAzure.CloudStorageAccount
The storage account.
Return Value
Type:
Microsoft.WindowsAzure.StorageClient.CloudQueueClientA client object that specifies the Queue service endpoint.
Example
The following code example creates client objects for each of the storage services.
| Copy Code |
---|
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();
}
|
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Change History
See Also