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

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

Initiates the asynchronous execution of the DeleteDataset operation.
public BeginDeleteDataset ( string datasetName, AsyncCallback callback, object state ) : IAsyncResult
datasetName string Dataset name.
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 BeginDeleteDataset(string datasetName, AsyncCallback callback, object state)
        {
            return client.BeginDeleteDataset(PrepareDeleteDatasetRequest(datasetName), callback, state);
        }