C# Класс WindowsAzure.Table.Wrappers.CloudTableWrapper

Wrapper around CloudTable.
Наследование: ICloudTable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
CloudTableWrapper ( Microsoft.WindowsAzure.Storage.Table.CloudTable cloudTable ) : System

Constructor.

Execute ( Microsoft.WindowsAzure.Storage.Table.TableOperation operation ) : Microsoft.WindowsAzure.Storage.Table.TableResult

Executes the operation on a table.

ExecuteAsync ( Microsoft.WindowsAzure.Storage.Table.TableOperation operation, CancellationToken cancellationToken ) : Task

Executes table operation asynchronously.

ExecuteBatch ( TableBatchOperation batch ) : IList

Executes a batch operation on a table as an atomic operation.

ExecuteBatchAsync ( TableBatchOperation tableBatchOperation, CancellationToken cancellationToken ) : Task>

Executes a batch of operations on a table asynchronously.

ExecuteQuery ( ITableQuery tableQuery ) : IEnumerable

Executes a query on a table.

ExecuteQueryAsync ( ITableQuery tableQuery, CancellationToken cancellationToken ) : Task>

Executes a query on a table asynchronously.

Описание методов

CloudTableWrapper() публичный Метод

Constructor.
public CloudTableWrapper ( Microsoft.WindowsAzure.Storage.Table.CloudTable cloudTable ) : System
cloudTable Microsoft.WindowsAzure.Storage.Table.CloudTable Cloud table.
Результат System

Execute() публичный Метод

Executes the operation on a table.
public Execute ( Microsoft.WindowsAzure.Storage.Table.TableOperation operation ) : Microsoft.WindowsAzure.Storage.Table.TableResult
operation Microsoft.WindowsAzure.Storage.Table.TableOperation /// A object that represents the operation to perform. ///
Результат Microsoft.WindowsAzure.Storage.Table.TableResult

ExecuteAsync() публичный Метод

Executes table operation asynchronously.
public ExecuteAsync ( Microsoft.WindowsAzure.Storage.Table.TableOperation operation, CancellationToken cancellationToken ) : Task
operation Microsoft.WindowsAzure.Storage.Table.TableOperation /// A object that represents the operation to perform. ///
cancellationToken System.Threading.CancellationToken Cancellation token.
Результат Task

ExecuteBatch() публичный Метод

Executes a batch operation on a table as an atomic operation.
public ExecuteBatch ( TableBatchOperation batch ) : IList
batch TableBatchOperation /// The object representing the operations to execute on the table. ///
Результат IList

ExecuteBatchAsync() публичный Метод

Executes a batch of operations on a table asynchronously.
public ExecuteBatchAsync ( TableBatchOperation tableBatchOperation, CancellationToken cancellationToken ) : Task>
tableBatchOperation TableBatchOperation /// The object representing the operations to execute on the table. ///
cancellationToken System.Threading.CancellationToken Cancalltion token.
Результат Task>

ExecuteQuery() публичный Метод

Executes a query on a table.
public ExecuteQuery ( ITableQuery tableQuery ) : IEnumerable
tableQuery ITableQuery /// A representing the query to execute. ///
Результат IEnumerable

ExecuteQueryAsync() публичный Метод

Executes a query on a table asynchronously.
public ExecuteQueryAsync ( ITableQuery tableQuery, CancellationToken cancellationToken ) : Task>
tableQuery ITableQuery Table query.
cancellationToken System.Threading.CancellationToken Cancellation token.
Результат Task>