Amazon.DynamoDBv2.DocumentModel.Table.LoadTableAsync C# (CSharp) Метод

LoadTableAsync() публичный статический Метод

Creates a Table object with the specified name, using the passed-in client to load the table definition. This method return an exception if the table does not exist within the callback.
public static LoadTableAsync ( IAmazonDynamoDB ddbClient, string tableName, DynamoDBEntryConversion conversion, AmazonDynamoDBCallbackcallback, AsyncOptionsasyncOptions = null ) : void
ddbClient IAmazonDynamoDB Client to use to access DynamoDB.
tableName string Name of the table.
conversion DynamoDBEntryConversion Conversion to use for converting .NET values to DynamoDB values.
callback AmazonDynamoDBCallback
The callback that will be invoked when the asynchronous operation completes.
asyncOptions Amazon.Runtime.AsyncOptions An instance of AsyncOptions that specifies how the async method should be executed.
Результат void
        public static void LoadTableAsync(IAmazonDynamoDB ddbClient, string tableName, DynamoDBEntryConversion conversion, AmazonDynamoDBCallback<Table> callback, AsyncOptions asyncOptions = null)
        {
            LoadTableAsync(ddbClient,tableName, DynamoDBConsumer.DocumentModel, conversion,callback,asyncOptions);
        }
        

Same methods

Table::LoadTableAsync ( IAmazonDynamoDB ddbClient, string tableName, AmazonDynamoDBCallbackcallback, AsyncOptionsasyncOptions = null ) : void
Table::LoadTableAsync ( IAmazonDynamoDB ddbClient, string tableName, Table consumer, DynamoDBEntryConversion conversion, AmazonDynamoDBCallbackcallback, AsyncOptionsasyncOptions = null ) : void