Amazon.CognitoSync.SyncManager.DatasetUpdates.DatasetUpdates C# (CSharp) Method

DatasetUpdates() public method

public DatasetUpdates ( string datasetName, List records, long syncCount, string syncSessionToken, bool exists, bool deleted, List mergedDatasetNameList ) : System
datasetName string
records List
syncCount long
syncSessionToken string
exists bool
deleted bool
mergedDatasetNameList List
return System
        public DatasetUpdates(string datasetName, List<Record> records, long syncCount, string syncSessionToken,
                                  bool exists, bool deleted, List<string> mergedDatasetNameList)
        {
            this._datasetName = datasetName;
            this._records = records;
            this._syncCount = syncCount;
            this._syncSessionToken = syncSessionToken;
            this._exists = exists;
            this._deleted = deleted;
            this._mergedDatasetNameList = mergedDatasetNameList;
        }
    }
DatasetUpdates