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

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

Returns a System.String that represents the current CmisSync.Lib.Events.FileConflictEvent.
public ToString ( ) : string
Результат string
        public override string ToString() {
            if (this.CreatedConflictPath == null) {
                return string.Format("FileConflictEvent: \"{0}\" on path \"{1}\"", this.Type, this.AffectedPath);
            } else {
                return string.Format("FileConflictEvent: \"{0}\" on path \"{1}\" solved by creating path \"{2}\"", this.Type, this.AffectedPath, this.CreatedConflictPath);
            }
        }
    }