PoEWhisperNotifier.LogMonitor.LogMonitor C# (CSharp) Метод

LogMonitor() публичный Метод

Creates a new LogMonitor without immediately starting to monitor changes.
public LogMonitor ( string LogPath ) : System
LogPath string
Результат System
		public LogMonitor(string LogPath) {
			if(!IsValidLogPath(LogPath))
				throw new ArgumentException("The log path specified was invalid.");
			this.LogPath = LogPath;
		}