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. The returned table will use the conversion specified by AWSConfigs.DynamoDBConfig.ConversionSchema This method return an exception if the table does not exist within the callback.
public static LoadTableAsync ( IAmazonDynamoDB ddbClient, string tableName, AmazonDynamoDBCallbackcallback, AsyncOptionsasyncOptions = null ) : void
ddbClient IAmazonDynamoDB Client to use to access DynamoDB.
tableName string Name of the table.
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, AmazonDynamoDBCallback<Table> callback, AsyncOptions asyncOptions = null)
        {
            LoadTableAsync(ddbClient,tableName, DynamoDBEntryConversion.CurrentConversion, callback,asyncOptions);
        }
        

Same methods

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