Udostępnij za pośrednictwem


CloudFileClient Constructors

Definition

Overloads

CloudFileClient(StorageUri, StorageCredentials, DelegatingHandler)

Initializes a new instance of the CloudFileClient class using the specified File service endpoint and account credentials.

CloudFileClient(Uri, StorageCredentials, DelegatingHandler)

Initializes a new instance of the CloudFileClient class using the specified File service endpoint and account credentials.

CloudFileClient(StorageUri, StorageCredentials, DelegatingHandler)

Initializes a new instance of the CloudFileClient class using the specified File service endpoint and account credentials.

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

Parameters

storageUri
StorageUri

The File 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

CloudFileClient(Uri, StorageCredentials, DelegatingHandler)

Initializes a new instance of the CloudFileClient class using the specified File service endpoint and account credentials.

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

Parameters

baseUri
Uri

The File 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