Delen via


ITableOperations Interface

Definition

TableOperations operations.

public interface ITableOperations
type ITableOperations = interface
Public Interface ITableOperations

Methods

CreateWithHttpMessagesAsync(String, String, String, IList<TableSignedIdentifier>, Dictionary<String,List<String>>, CancellationToken)

Creates a new table with the specified table name, under the specified account.

DeleteWithHttpMessagesAsync(String, String, String, Dictionary<String,List<String>>, CancellationToken)

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

GetWithHttpMessagesAsync(String, String, String, Dictionary<String,List<String>>, CancellationToken)

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

ListNextWithHttpMessagesAsync(String, Dictionary<String,List<String>>, CancellationToken)

Gets a list of all the tables under the specified storage account

ListWithHttpMessagesAsync(String, String, Dictionary<String,List<String>>, CancellationToken)

Gets a list of all the tables under the specified storage account

UpdateWithHttpMessagesAsync(String, String, String, IList<TableSignedIdentifier>, Dictionary<String,List<String>>, CancellationToken)

Creates a new table with the specified table name, under the specified account.

Extension Methods

Create(ITableOperations, String, String, String, IList<TableSignedIdentifier>)

Creates a new table with the specified table name, under the specified account.

CreateAsync(ITableOperations, String, String, String, IList<TableSignedIdentifier>, CancellationToken)

Creates a new table with the specified table name, under the specified account.

Delete(ITableOperations, String, String, String)

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

DeleteAsync(ITableOperations, String, String, String, CancellationToken)

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

Get(ITableOperations, String, String, String)

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

GetAsync(ITableOperations, String, String, String, CancellationToken)

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

List(ITableOperations, String, String)

Gets a list of all the tables under the specified storage account

ListAsync(ITableOperations, String, String, CancellationToken)

Gets a list of all the tables under the specified storage account

ListNext(ITableOperations, String)

Gets a list of all the tables under the specified storage account

ListNextAsync(ITableOperations, String, CancellationToken)

Gets a list of all the tables under the specified storage account

Update(ITableOperations, String, String, String, IList<TableSignedIdentifier>)

Creates a new table with the specified table name, under the specified account.

UpdateAsync(ITableOperations, String, String, String, IList<TableSignedIdentifier>, CancellationToken)

Creates a new table with the specified table name, under the specified account.

Applies to