CloudBlobClient 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
CloudBlobClient(Uri, DelegatingHandler) |
Initializes a new instance of the CloudBlobClient class using the specified Blob service endpoint and anonymous credentials. |
CloudBlobClient(StorageUri, StorageCredentials, DelegatingHandler) |
Initializes a new instance of the CloudBlobClient class using the specified Blob service endpoint and account credentials. |
CloudBlobClient(Uri, StorageCredentials, DelegatingHandler) |
Initializes a new instance of the CloudBlobClient class using the specified Blob service endpoint and account credentials. |
CloudBlobClient(Uri, DelegatingHandler)
Initializes a new instance of the CloudBlobClient class using the specified Blob service endpoint and anonymous credentials.
public CloudBlobClient (Uri baseUri, System.Net.Http.DelegatingHandler delegatingHandler = default);
new Microsoft.Azure.Storage.Blob.CloudBlobClient : Uri * System.Net.Http.DelegatingHandler -> Microsoft.Azure.Storage.Blob.CloudBlobClient
Public Sub New (baseUri As Uri, Optional delegatingHandler As DelegatingHandler = Nothing)
Parameters
- delegatingHandler
- DelegatingHandler
A chain of 1 or more DelegatingHandler instances, the innermost of which must have a null InnerHandler.
Applies to
CloudBlobClient(StorageUri, StorageCredentials, DelegatingHandler)
Initializes a new instance of the CloudBlobClient class using the specified Blob service endpoint and account credentials.
public CloudBlobClient (Microsoft.Azure.Storage.StorageUri storageUri, Microsoft.Azure.Storage.Auth.StorageCredentials credentials, System.Net.Http.DelegatingHandler delegatingHandler = default);
new Microsoft.Azure.Storage.Blob.CloudBlobClient : Microsoft.Azure.Storage.StorageUri * Microsoft.Azure.Storage.Auth.StorageCredentials * System.Net.Http.DelegatingHandler -> Microsoft.Azure.Storage.Blob.CloudBlobClient
Public Sub New (storageUri As StorageUri, credentials As StorageCredentials, Optional delegatingHandler As DelegatingHandler = Nothing)
Parameters
- storageUri
- StorageUri
A StorageUri object containing the Blob 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
CloudBlobClient(Uri, StorageCredentials, DelegatingHandler)
Initializes a new instance of the CloudBlobClient class using the specified Blob service endpoint and account credentials.
public CloudBlobClient (Uri baseUri, Microsoft.Azure.Storage.Auth.StorageCredentials credentials, System.Net.Http.DelegatingHandler delegatingHandler = default);
new Microsoft.Azure.Storage.Blob.CloudBlobClient : Uri * Microsoft.Azure.Storage.Auth.StorageCredentials * System.Net.Http.DelegatingHandler -> Microsoft.Azure.Storage.Blob.CloudBlobClient
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