Amazon.CognitoSync.SyncManager.Dataset.PutAll C# (CSharp) Method

PutAll() public method

Populates a dataset with a dictionary of key/value pairs
public PutAll ( string>.IDictionary values ) : void
values string>.IDictionary An IDictionary of key/value pairs
return void
        public void PutAll(IDictionary<string, string> values)
        {
            foreach (string key in values.Keys)
            {
                DatasetUtils.ValidateRecordKey(key);
            }
            Local.PutAllValues(IdentityId, DatasetName, values);
        }