Stop() public méthode

public Stop ( ) : void
Résultat void
Exemple #1
0
		public void StopDispatching (FileSystemWatcher fsw)
		{
			KqueueMonitor monitor = (KqueueMonitor)watches [fsw];
			if (monitor == null)
				return;

			monitor.Stop ();
		}
Exemple #2
0
        public void StopDispatching(object handle)
        {
            var           fsw     = handle as FileSystemWatcher;
            KqueueMonitor monitor = (KqueueMonitor)watches [fsw];

            if (monitor == null)
            {
                return;
            }

            monitor.Stop();
        }