Class FileEvent
� file event used notified by DirectoryWatcher
public class FileEvent : EventArgs
  - Inheritance
 - 
      objectFileEvent
 
- Derived
 
- Inherited Members
 
Constructors
FileEvent(FileEventChangeType, string, string)
Initializes a new instance of the FileEvent class.
public FileEvent(FileEventChangeType changeType, string name, string fullPath)
  Parameters
changeTypeFileEventChangeTypeType of the change.
namestringThe name.
fullPathstringThe full path.
Properties
ChangeType
Gets the type of the change.
public FileEventChangeType ChangeType { get; }
  Property Value
- FileEventChangeType
 The type of the change.
FullPath
Gets the full path.
public string FullPath { get; }
  Property Value
- string
 The full path.
Name
Gets the name.
public string Name { get; }
  Property Value
- string
 The name.