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
@@ -42,65 +56,58 @@ public int FilesChanged(uint numberOfFilesChanged, string[] filesChanged, uint[]
42
56
thrownewArgumentNullException(nameof(flags));
43
57
}
44
58
45
-
Debug.Assert(numberOfFilesChanged==filesChanged.Length&&numberOfFilesChanged==flags.Length,"number of files changed doesn't match actual files reported.");
Debug.Assert(numberOfFilesChanged==filesChanged.Length&&numberOfFilesChanged==flags.Length,"number of files changed doesn't match actual files reported.");
Copy file name to clipboardExpand all lines: Nodejs/Product/Nodejs/SharedProject/StructuresEnums.cs
+9-24Lines changed: 9 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,6 @@
1
1
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2
2
3
3
usingSystem;
4
-
usingSystem.Diagnostics;
5
-
usingSystem.IO;
6
4
usingSystem.Runtime.InteropServices;
7
5
usingMicrosoft.VisualStudio.Shell.Interop;
8
6
@@ -298,39 +296,26 @@ public sealed class FileChangedOnDiskEventArgs : EventArgs
298
296
/// </summary>
299
297
publicreadonlystringFileName;
300
298
299
+
/// <summary>
300
+
/// The item ide of the file that has changed.
301
+
/// </summary>
302
+
publicreadonlyuintItemID;
303
+
301
304
/// <summary>
302
305
/// The reason the file has changed on disk.
303
306
/// </summary>
304
-
publicreadonlyWatcherChangeTypesFileChange;
307
+
publicreadonly_VSFILECHANGEFLAGSFileChangeFlag;
305
308
306
309
/// <summary>
307
310
/// Constructs a new event args.
308
311
/// </summary>
309
312
/// <param name="fileName">File name that was changed on disk.</param>
310
313
/// <param name="id">The item id of the file that was changed on disk.</param>
0 commit comments