PoEWhisperNotifier.LogMonitor.StopMonitoring C# (CSharp) 메소드

StopMonitoring() 공개 메소드

Stops monitoring the log file for changes. If any messages are currently being processed, they may still be dispatched.
public StopMonitoring ( ) : void
리턴 void
		public void StopMonitoring() {
			if(!IsMonitoring)
				throw new InvalidOperationException("Not currently monitoring.");
			IsMonitoring = false;
			_LogThread.Join();
			_LogStream.Dispose();
		}