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

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

Initiates the asynchronous execution of the ListUpdates operation.
public BeginListUpdates ( string datasetName, long lastSyncCount, AsyncCallback callback, object state ) : IAsyncResult
datasetName string Dataset name.
lastSyncCount long Last sync count.
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 BeginListUpdates(string datasetName, long lastSyncCount, AsyncCallback callback, object state)
        {
            return UpdatesPopulator.BeginInvoke(client, PrepareListRecordsRequest(datasetName, lastSyncCount), callback, state);
        }