Share via


TableServiceResource.GetTable(String, CancellationToken) Method

Definition

Gets the table with the specified table name, under the specified account if it exists.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}
  • Operation Id: Table_Get
  • Default Api Version: 2022-09-01
  • Resource: TableResource
public virtual Azure.Response<Azure.ResourceManager.Storage.TableResource> GetTable (string tableName, System.Threading.CancellationToken cancellationToken = default);
abstract member GetTable : string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Storage.TableResource>
override this.GetTable : string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Storage.TableResource>
Public Overridable Function GetTable (tableName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of TableResource)

Parameters

tableName
String

A table name must be unique within a storage account and must be between 3 and 63 characters.The name must comprise of only alphanumeric characters and it cannot begin with a numeric character.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

tableName is null.

tableName is an empty string, and was expected to be non-empty.

Applies to