DekGenius.com
[ Team LiB ] Previous Section Next Section

WatcherChangeTypesserializable, flag

System.IO (system.dll)enum

This enumeration represents the different types of changes that can occur on a file. It is used by FileSystemEventArgs.

public enum WatcherChangeTypes {
   Created = 0x00000001,
   Deleted = 0x00000002,
   Changed = 0x00000004,
   Renamed = 0x00000008,
   All = 0x0000000F
}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparable, System.IFormattable, System.IConvertible) WatcherChangeTypes

Returned By

FileSystemEventArgs.ChangeType, WaitForChangedResult.ChangeType

Passed To

FileSystemEventArgs.FileSystemEventArgs( ), FileSystemWatcher.WaitForChanged( ), RenamedEventArgs.RenamedEventArgs( ), WaitForChangedResult.ChangeType

    [ Team LiB ] Previous Section Next Section