PoEWhisperNotifier.LogMonitor.LogMonitor C# (CSharp) Méthode

LogMonitor() public méthode

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