CloudTableClient Constructors

Definition

Overloads

CloudTableClient(StorageUri, StorageCredentials)

Initializes a new instance of the CloudTableClient class using the specified Table service endpoint and account credentials.

CloudTableClient(Uri, StorageCredentials)
CloudTableClient(StorageUri, StorageCredentials, TableClientConfiguration)

Initializes a new instance of the CloudTableClient class using the specified Table service endpoint and account credentials.

CloudTableClient(Uri, StorageCredentials, TableClientConfiguration)

Initializes a new instance of the CloudTableClient class using the specified Table service endpoint and account credentials.

CloudTableClient(StorageUri, StorageCredentials)

Initializes a new instance of the CloudTableClient class using the specified Table service endpoint and account credentials.

public CloudTableClient (Microsoft.Azure.Cosmos.Table.StorageUri storageUri, Microsoft.Azure.Cosmos.Table.StorageCredentials credentials);
new Microsoft.Azure.Cosmos.Table.CloudTableClient : Microsoft.Azure.Cosmos.Table.StorageUri * Microsoft.Azure.Cosmos.Table.StorageCredentials -> Microsoft.Azure.Cosmos.Table.CloudTableClient
Public Sub New (storageUri As StorageUri, credentials As StorageCredentials)

Parameters

storageUri
StorageUri

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

credentials
StorageCredentials

A StorageCredentials object.

Applies to

CloudTableClient(Uri, StorageCredentials)

public CloudTableClient (Uri baseUri, Microsoft.Azure.Cosmos.Table.StorageCredentials credentials);
new Microsoft.Azure.Cosmos.Table.CloudTableClient : Uri * Microsoft.Azure.Cosmos.Table.StorageCredentials -> Microsoft.Azure.Cosmos.Table.CloudTableClient
Public Sub New (baseUri As Uri, credentials As StorageCredentials)

Parameters

baseUri
Uri
credentials
StorageCredentials

Applies to

CloudTableClient(StorageUri, StorageCredentials, TableClientConfiguration)

Initializes a new instance of the CloudTableClient class using the specified Table service endpoint and account credentials.

public CloudTableClient (Microsoft.Azure.Cosmos.Table.StorageUri storageUri, Microsoft.Azure.Cosmos.Table.StorageCredentials credentials, Microsoft.Azure.Cosmos.Table.TableClientConfiguration configuration = default);
new Microsoft.Azure.Cosmos.Table.CloudTableClient : Microsoft.Azure.Cosmos.Table.StorageUri * Microsoft.Azure.Cosmos.Table.StorageCredentials * Microsoft.Azure.Cosmos.Table.TableClientConfiguration -> Microsoft.Azure.Cosmos.Table.CloudTableClient
Public Sub New (storageUri As StorageUri, credentials As StorageCredentials, Optional configuration As TableClientConfiguration = Nothing)

Parameters

storageUri
StorageUri

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

credentials
StorageCredentials

A StorageCredentials object.

configuration
TableClientConfiguration

Represents the configuration settings associated with CloudTableClient. If none is passed, the default is applied.

Applies to

CloudTableClient(Uri, StorageCredentials, TableClientConfiguration)

Initializes a new instance of the CloudTableClient class using the specified Table service endpoint and account credentials.

public CloudTableClient (Uri baseUri, Microsoft.Azure.Cosmos.Table.StorageCredentials credentials, Microsoft.Azure.Cosmos.Table.TableClientConfiguration configuration = default);
new Microsoft.Azure.Cosmos.Table.CloudTableClient : Uri * Microsoft.Azure.Cosmos.Table.StorageCredentials * Microsoft.Azure.Cosmos.Table.TableClientConfiguration -> Microsoft.Azure.Cosmos.Table.CloudTableClient
Public Sub New (baseUri As Uri, credentials As StorageCredentials, Optional configuration As TableClientConfiguration = Nothing)

Parameters

baseUri
Uri

A Uri object containing the Table service endpoint to use to create the client.

credentials
StorageCredentials

A StorageCredentials object.

configuration
TableClientConfiguration

Represents the configuration settings associated with CloudTableClient. If none is passed, the default is applied.

Applies to