示例#1
0
 /// <summary>
 ///   Initializes a new instance of the <see cref="FileEvent"/> class.
 /// </summary>
 /// <param name="changeType">Type of the change.</param>
 /// <param name="name">The name of the file.</param>
 /// <param name="fullPath">The full path of the file.</param>
 public FileEvent(FileEventChangeType changeType, string name, string fullPath)
 {
     ChangeType = changeType;
     Name       = name;
     FullPath   = fullPath;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FileEvent"/> class.
 /// </summary>
 /// <param name="changeType">Type of the change.</param>
 /// <param name="name">The name.</param>
 /// <param name="fullPath">The full path.</param>
 public FileEvent(FileEventChangeType changeType, string name, string fullPath)
 {
     this.changeType = changeType;
     this.name       = name;
     this.fullPath   = fullPath;
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FileEvent"/> class.
 /// </summary>
 /// <param name="changeType">Type of the change.</param>
 /// <param name="name">The name.</param>
 /// <param name="fullPath">The full path.</param>
 public FileEvent(FileEventChangeType changeType, string name, string fullPath)
 {
     this.changeType = changeType;
     this.name = name;
     this.fullPath = fullPath;
 }