PoEWhisperNotifier.LogMonitor.StopMonitoring C# (CSharp) Method

StopMonitoring() public method

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