Amazon.CognitoSync.SyncManager.Internal.CognitoSyncStorage.BeginPutRecords C# (CSharp) Метод

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

Initiates the asynchronous execution of the PutRecords operation.
public BeginPutRecords ( string datasetName, List records, string syncSessionToken, AsyncCallback callback, object state ) : IAsyncResult
datasetName string Dataset name.
records List Records.
syncSessionToken string Sync session token.
callback AsyncCallback An AsyncCallback delegate that is invoked when the operation completes.
state object A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.
Результат IAsyncResult
        public IAsyncResult BeginPutRecords(string datasetName, List<Record> records, string syncSessionToken, AsyncCallback callback, object state)
        {
            return client.BeginUpdateRecords(PrepareUpdateRecordsRequest(datasetName, records, syncSessionToken), callback, state);
        }