System.IO.KeventWatcher.StopDispatching C# (CSharp) 메소드

StopDispatching() 공개 메소드

public StopDispatching ( FileSystemWatcher fsw ) : void
fsw FileSystemWatcher
리턴 void
		public void StopDispatching (FileSystemWatcher fsw)
		{
			KqueueMonitor monitor = (KqueueMonitor)watches [fsw];
			if (monitor == null)
				return;

			monitor.Stop ();
		}