TableServiceResource.GetTableAsync(String, CancellationToken) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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: 2023-05-01
- Resource: TableResource
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.ResourceManager.Storage.TableResource>> GetTableAsync (string tableName, System.Threading.CancellationToken cancellationToken = default);
abstract member GetTableAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.ResourceManager.Storage.TableResource>>
override this.GetTableAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.ResourceManager.Storage.TableResource>>
Public Overridable Function GetTableAsync (tableName As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of 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
Azure SDK for .NET