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

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

Initializes a new instance of the CmisSync.Lib.Events.FileConflictEvent class.
public FileConflictEvent ( FileConflictType type, string affectedPath, string createdConflictPath = null ) : System
type FileConflictType /// Conflict Type. ///
affectedPath string /// Affected path. ///
createdConflictPath string /// Created conflict path. ///
Результат System
        public FileConflictEvent(FileConflictType type, string affectedPath, string createdConflictPath = null) {
            if (affectedPath == null) {
                throw new ArgumentNullException("affectedPath");
            }

            this.Type = type;
            this.AffectedPath = affectedPath;
            this.CreatedConflictPath = createdConflictPath;
        }