Example #1
0
        public void ScheduleMonitor(IEnumerable <string> paths)
        {
            if (paths == null)
            {
                throw new ArgumentNullException("paths");
            }

            ChangeManager.ScheduleMonitor(paths);
        }
Example #2
0
        public void ScheduleMonitor(string path)
        {
            if (string.IsNullOrEmpty(path))
            {
                throw new ArgumentNullException("path");
            }

            ChangeManager.ScheduleMonitor(path);
        }