Dela via


CloudQueueClient Constructors

Definition

Overloads

CloudQueueClient(StorageUri, StorageCredentials, DelegatingHandler)

Initializes a new instance of the CloudQueueClient class using the specified Queue service endpoint and account credentials.

CloudQueueClient(Uri, StorageCredentials, DelegatingHandler)

Initializes a new instance of the CloudQueueClient class using the specified Queue service endpoint and account credentials.

CloudQueueClient(StorageUri, StorageCredentials, DelegatingHandler)

Initializes a new instance of the CloudQueueClient class using the specified Queue service endpoint and account credentials.

public CloudQueueClient (Microsoft.Azure.Storage.StorageUri storageUri, Microsoft.Azure.Storage.Auth.StorageCredentials credentials, System.Net.Http.DelegatingHandler delegatingHandler = default);
new Microsoft.Azure.Storage.Queue.CloudQueueClient : Microsoft.Azure.Storage.StorageUri * Microsoft.Azure.Storage.Auth.StorageCredentials * System.Net.Http.DelegatingHandler -> Microsoft.Azure.Storage.Queue.CloudQueueClient
Public Sub New (storageUri As StorageUri, credentials As StorageCredentials, Optional delegatingHandler As DelegatingHandler = Nothing)

Parameters

storageUri
StorageUri

A StorageUri object containing the Queue service endpoint to use to create the client.

credentials
StorageCredentials

A StorageCredentials object.

delegatingHandler
DelegatingHandler

A chain of 1 or more DelegatingHandler instances, the innermost of which must have a null InnerHandler.

Applies to

CloudQueueClient(Uri, StorageCredentials, DelegatingHandler)

Initializes a new instance of the CloudQueueClient class using the specified Queue service endpoint and account credentials.

public CloudQueueClient (Uri baseUri, Microsoft.Azure.Storage.Auth.StorageCredentials credentials, System.Net.Http.DelegatingHandler delegatingHandler = default);
new Microsoft.Azure.Storage.Queue.CloudQueueClient : Uri * Microsoft.Azure.Storage.Auth.StorageCredentials * System.Net.Http.DelegatingHandler -> Microsoft.Azure.Storage.Queue.CloudQueueClient
Public Sub New (baseUri As Uri, credentials As StorageCredentials, Optional delegatingHandler As DelegatingHandler = Nothing)

Parameters

baseUri
Uri

The Uri containing the Queue service endpoint to use to create the client.

credentials
StorageCredentials

A StorageCredentials object.

delegatingHandler
DelegatingHandler

A chain of 1 or more DelegatingHandler instances, the innermost of which must have a null InnerHandler.

Applies to