Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

CloudTableClient Class (Microsoft.WindowsAzure.Storage.Table)

Provides a client-side logical representation of the Windows Azure Table Service. This client is used to configure and execute requests against the Table Service.

Namespace:   Microsoft.WindowsAzure.Storage.Table
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Inheritance Hierarchy

System.::..Object
  Microsoft.WindowsAzure.Storage.Table.::..CloudTableClient

Syntax

 
public class CloudTableClient
 
public ref class CloudTableClient 
 
type CloudTableClient = class end
 
Public Class CloudTableClient

Constructors

NameDescription
System_CAPS_pubmethodCloudTableClient(StorageUri, StorageCredentials)(StorageUri^, StorageCredentials^)(StorageUri, StorageCredentials)(StorageUri, StorageCredentials)

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

System_CAPS_pubmethodCloudTableClient(Uri, StorageCredentials)(Uri^, StorageCredentials^)(Uri, StorageCredentials)(Uri, StorageCredentials)

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

Properties

NameDescription
System_CAPS_pubpropertyAuthenticationSchemeAuthenticationSchemeAuthenticationSchemeAuthenticationScheme

Gets or sets the authentication scheme to use to sign HTTP requests.

System_CAPS_pubpropertyBaseUriBaseUriBaseUriBaseUri

Gets the base URI for the Table service client at the primary location.

System_CAPS_pubpropertyBufferManagerBufferManagerBufferManagerBufferManager

Gets or sets a buffer manager that implements the IBufferManager interface, specifying a buffer pool for use with operations against the Table service client.

System_CAPS_pubpropertyCredentialsCredentialsCredentialsCredentials

Gets the account credentials used to create the Table service client.

System_CAPS_pubpropertyDefaultRequestOptionsDefaultRequestOptionsDefaultRequestOptionsDefaultRequestOptions

Gets or sets the default request options for requests made via the Table service client.

System_CAPS_pubpropertyStorageUriStorageUriStorageUriStorageUri

Gets the Table service endpoints for both the primary and secondary locations.

Methods

NameDescription
System_CAPS_pubmethodEquals(Object)(Object^)(Object)(Object)

(Inherited from Object.)

System_CAPS_protmethodFinalize()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetServicePropertiesAsync()()()()

Gets the properties of the table service.

System_CAPS_pubmethodGetServicePropertiesAsync(TableRequestOptions, OperationContext)(TableRequestOptions^, OperationContext^)(TableRequestOptions, OperationContext)(TableRequestOptions, OperationContext)

Gets the properties of the table service.

System_CAPS_pubmethodGetServicePropertiesAsync(TableRequestOptions, OperationContext, CancellationToken)(TableRequestOptions^, OperationContext^, CancellationToken)(TableRequestOptions, OperationContext, CancellationToken)(TableRequestOptions, OperationContext, CancellationToken)

Gets the properties of the table service.

System_CAPS_pubmethodGetServiceStatsAsync()()()()

Gets the stats of the table service.

System_CAPS_pubmethodGetServiceStatsAsync(TableRequestOptions, OperationContext)(TableRequestOptions^, OperationContext^)(TableRequestOptions, OperationContext)(TableRequestOptions, OperationContext)

Gets the stats of the table service.

System_CAPS_pubmethodGetServiceStatsAsync(TableRequestOptions, OperationContext, CancellationToken)(TableRequestOptions^, OperationContext^, CancellationToken)(TableRequestOptions, OperationContext, CancellationToken)(TableRequestOptions, OperationContext, CancellationToken)

Gets the stats of the table service.

System_CAPS_pubmethodGetTableReference(String)(String^)(String)(String)

Gets a reference to the specified table.

System_CAPS_pubmethodGetType()()()()

(Inherited from Object.)

System_CAPS_pubmethodListTablesSegmentedAsync(String, Nullable<Int32>, TableContinuationToken, TableRequestOptions, OperationContext)(String^, Nullable<Int32>, TableContinuationToken^, TableRequestOptions^, OperationContext^)(String, Nullable<Int32>, TableContinuationToken, TableRequestOptions, OperationContext)(String, Nullable(Of Int32), TableContinuationToken, TableRequestOptions, OperationContext)

Returns a result segment containing a collection of tables beginning with the specified prefix.

System_CAPS_pubmethodListTablesSegmentedAsync(String, Nullable<Int32>, TableContinuationToken, TableRequestOptions, OperationContext, CancellationToken)(String^, Nullable<Int32>, TableContinuationToken^, TableRequestOptions^, OperationContext^, CancellationToken)(String, Nullable<Int32>, TableContinuationToken, TableRequestOptions, OperationContext, CancellationToken)(String, Nullable(Of Int32), TableContinuationToken, TableRequestOptions, OperationContext, CancellationToken)

Returns a result segment containing a collection of tables beginning with the specified prefix.

System_CAPS_pubmethodListTablesSegmentedAsync(String, TableContinuationToken)(String^, TableContinuationToken^)(String, TableContinuationToken)(String, TableContinuationToken)

Returns a result segment containing a collection of table items beginning with the specified prefix.

System_CAPS_pubmethodListTablesSegmentedAsync(TableContinuationToken)(TableContinuationToken^)(TableContinuationToken)(TableContinuationToken)

Returns a collection of table items.

System_CAPS_protmethodMemberwiseClone()()()()

(Inherited from Object.)

System_CAPS_pubmethodSetServicePropertiesAsync(ServiceProperties)(ServiceProperties^)(ServiceProperties)(ServiceProperties)

Gets the properties of the table service.

System_CAPS_pubmethodSetServicePropertiesAsync(ServiceProperties, TableRequestOptions, OperationContext)(ServiceProperties^, TableRequestOptions^, OperationContext^)(ServiceProperties, TableRequestOptions, OperationContext)(ServiceProperties, TableRequestOptions, OperationContext)

Gets the properties of the table service.

System_CAPS_pubmethodSetServicePropertiesAsync(ServiceProperties, TableRequestOptions, OperationContext, CancellationToken)(ServiceProperties^, TableRequestOptions^, OperationContext^, CancellationToken)(ServiceProperties, TableRequestOptions, OperationContext, CancellationToken)(ServiceProperties, TableRequestOptions, OperationContext, CancellationToken)

Gets the properties of the table service.

System_CAPS_pubmethodToString()()()()

(Inherited from Object.)

Provides a client-side logical representation of the Windows Azure Table service. This client is used to configure and execute requests against the Table service.

Remarks

The service client encapsulates the base URI for the Table service. If the service client will be used for authenticated access, it also encapsulates the credentials for accessing the storage account.

Remarks

The CloudTableClient object encapsulates the base URI for the Table service. If the service client will be used for authenticated access, it also encapsulates the credentials for accessing the storage account.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top