You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -14,10 +9,18 @@ public interface IFileSystemWatcherFactory
14
9
IFileSystemWatcherCreateNew();
15
10
16
11
/// <summary>
17
-
/// Initializes a new instance of the <see cref="FileSystemWatcherBase"/> class, which acts as a wrapper for a FileSystemWatcher
12
+
/// Initializes a new instance of the <see cref="FileSystemWatcherBase"/> class, given the specified directory to monitor, which acts as a wrapper for a FileSystemWatcher
13
+
/// </summary>
14
+
/// <param name="path">The directory to monitor, in standard or Universal Naming Convention (UNC) notation.</param>
15
+
/// <returns></returns>
16
+
IFileSystemWatcherCreateNew(stringpath);
17
+
18
+
/// <summary>
19
+
/// Initializes a new instance of the <see cref="FileSystemWatcherBase"/> class, given the specified directory and type of files to monitor, which acts as a wrapper for a FileSystemWatcher
18
20
/// </summary>
19
-
/// <param name="path">Path to generate the FileSystemWatcherBase for</param>
21
+
/// <param name="path">The directory to monitor, in standard or Universal Naming Convention (UNC) notation.</param>
22
+
/// <param name="filter">The type of files to watch. For example, "*.txt" watches for changes to all text files.</param>
0 commit comments