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

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

Gets a list of records which have been updated since lastSyncCount (inclusive). If the value of a record equals null, then the record is deleted. If you pass 0 as lastSyncCount, the full list of records will be returned.
public ListUpdates ( string datasetName, long lastSyncCount ) : DatasetUpdates
datasetName string Dataset name.
lastSyncCount long Last sync count.
Результат DatasetUpdates
        public DatasetUpdates ListUpdates(string datasetName, long lastSyncCount)
        {
            return UpdatesPopulator.Invoke(client, PrepareListRecordsRequest(datasetName, lastSyncCount));
        }