TableClientConfiguration Class

Definition

Represents the configuration settings associated with CloudTableClient.

public class TableClientConfiguration
type TableClientConfiguration = class
Public Class TableClientConfiguration
Inheritance
TableClientConfiguration

Constructors

TableClientConfiguration()

Initializes a new instance of the TableClientConfiguration class.

Properties

CosmosExecutorConfiguration

The configuration setting used for Azure Cosmos Table service, associated with CloudTableClient to connect to the Azure Cosmos table service.

RestExecutorConfiguration

The configuration setting used for Azure Storage Table service, associated with CloudTableClient to connect to the Azure Storage table service.

UseRestExecutorForCosmosEndpoint

Specifies whether to use Rest Executor when connecting to Cosmos Table Service. When set to true, table operations will be executed by sending Http Rest requests. When set to false, table operations will be executed using a native Cosmos protocol. The default value is false. We recommend using Cosmos Executor by default for better performance and improved latency.Certain Cosmos DB specific features, such as Session Consistency, are only available well using the Cosmos Executor.

Applies to