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

GetRecord() public method

Gets the Amazon.CognitoSync.SyncManager.Record with the given key. If the Amazon.CognitoSync.SyncManager.Record doesn't exist or is marked deleted, null will be returned.
public GetRecord ( string key ) : Record
key string Key of the record in the dataset.
return Record
        public Record GetRecord(string key)
        {
            return Local.GetRecord(IdentityId, DatasetName,
                                  DatasetUtils.ValidateRecordKey(key));
        }