Amazon.CognitoSync.SyncManager.SyncConflict.ResolveWithRemoteRecord C# (CSharp) Method

ResolveWithRemoteRecord() public method

Resolves conflict with remote record
public ResolveWithRemoteRecord ( ) : Record
return Record
        public Record ResolveWithRemoteRecord()
        {
            return new Record(
                this.Key,
                this.RemoteRecord.Value,
                this.RemoteRecord.SyncCount,
                this.RemoteRecord.LastModifiedDate,
                this.RemoteRecord.LastModifiedBy,
                this.RemoteRecord.DeviceLastModifiedDate,
                false
                );
        }