CloudQueueClient Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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
Azure SDK for .NET