CmisSync.Lib.Storage.Database.Entities.MappedObject.ToString C# (CSharp) Method

ToString() public method

Returns a System.String that represents the current CmisSync.Lib.Data.MappedObject.
public ToString ( ) : string
return string
        public override string ToString() {
            return string.Format(
                "[MappedObject: ParentId={0}, Type={1}, RemoteObjectId={2}, LastChangeToken={3}, LastRemoteWriteTimeUtc={4}, LastLocalWriteTimeUtc={5}, LastChecksum={6}, ChecksumAlgorithmName={7}, Name={8}, Description={9}, Guid={10}, LastContentSize={11}, Ignored={12}, ReadOnly={13}]",
                this.ParentId,
                this.Type,
                this.RemoteObjectId,
                this.LastChangeToken,
                this.LastRemoteWriteTimeUtc,
                this.LastLocalWriteTimeUtc,
                this.LastChecksum == null ? "null" : BitConverter.ToString(this.LastChecksum),
                this.ChecksumAlgorithmName,
                this.Name,
                this.Description,
                this.Guid,
                this.LastContentSize,
                this.Ignored,
                this.IsReadOnly);
        }
    }