System.IO (system.dll) | class |
This class offers the arguments for
a
FileSystemEventHandler.
public class FileSystemEventArgs : EventArgs {
// Public Constructors
public FileSystemEventArgs(WatcherChangeTypes changeType, string directory, string name);
// Public Instance Properties
public WatcherChangeTypes ChangeType{get; }
public string FullPath{get; }
public string Name{get; }
}
Hierarchy
System.Object
System.EventArgs
FileSystemEventArgs
Subclasses
RenamedEventArgs
Passed To
FileSystemEventHandler.{BeginInvoke( ),
Invoke( )}, FileSystemWatcher.{OnChanged(
), OnCreated( ), OnDeleted(
)}
|