System.IO.FileSystemWatcher.FileSystemWatcher C# (CSharp) Méthode

FileSystemWatcher() static private méthode

static private FileSystemWatcher ( ) : System.ComponentModel
Résultat System.ComponentModel
        static FileSystemWatcher()
        {
            int s_notifyFiltersValidMask = 0;
            foreach (int enumValue in Enum.GetValues(typeof(NotifyFilters)))
                s_notifyFiltersValidMask |= enumValue;
            Debug.Assert(c_notifyFiltersValidMask == s_notifyFiltersValidMask, "The NotifyFilters enum has changed. The c_notifyFiltersValidMask must be updated to reflect the values of the NotifyFilters enum.");
        }
#endif

Same methods

FileSystemWatcher::FileSystemWatcher ( )
FileSystemWatcher::FileSystemWatcher ( string path )
FileSystemWatcher::FileSystemWatcher ( string path, string filter )
FileSystemWatcher::FileSystemWatcher ( string path ) : System.ComponentModel
FileSystemWatcher::FileSystemWatcher ( string path, string filter ) : System.ComponentModel