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

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

Post updates to remote storage. Each record has a sync count. If the sync count doesn't match what's on the remote storage, i.e. the record is modified by a different device, this operation throws ConflictException. Otherwise it returns a list of records that are updated successfully.
public PutRecords ( string datasetName, List records, string syncSessionToken ) : List
datasetName string Dataset name.
records List Records.
syncSessionToken string Sync session token.
Результат List
        public List<Record> PutRecords(string datasetName, List<Record> records, string syncSessionToken)
        {
            UpdateRecordsResponse response = client.UpdateRecords(PrepareUpdateRecordsRequest(datasetName, records, syncSessionToken));
            return ExtractRecords(response);
        }