CmisSync.Lib.Events.FolderEvent.ToString C# (CSharp) Метод

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

Returns a System.String that represents the current CmisSync.Lib.Events.FolderEvent.
public ToString ( ) : string
Результат string
        public override string ToString() {
            return string.Format(
                "[FolderEvent: Local={0} on {2}, Remote={1} on {3} created by {4}]",
                this.Local,
                this.Remote,
                this.LocalFolder != null ? this.LocalFolder.Name : string.Empty,
                this.RemoteFolder != null ? this.RemoteFolder.Name : string.Empty,
                this.Source != null ? this.Source : "null");
        }
    }