Amazon.CognitoSync.SyncManager.SyncConflict.ResolveWithValue C# (CSharp) Метод

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

Resolves conflict with a new value.
public ResolveWithValue ( string newValue ) : Record
newValue string new value of the record
Результат Record
        public Record ResolveWithValue(string newValue)
        {
            return new Record(
                this.Key,
                newValue,
                this.RemoteRecord.SyncCount,
                this.LocalRecord.LastModifiedDate,
                this.LocalRecord.LastModifiedBy,
                this.LocalRecord.DeviceLastModifiedDate,
                true
                );
        }
    }