PoEWhisperNotifier.LogMonitor.LogMonitor C# (CSharp) Method

LogMonitor() public method

Creates a new LogMonitor without immediately starting to monitor changes.
public LogMonitor ( string LogPath ) : System
LogPath string
return System
		public LogMonitor(string LogPath) {
			if(!IsValidLogPath(LogPath))
				throw new ArgumentException("The log path specified was invalid.");
			this.LogPath = LogPath;
		}