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;
		}