This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
using System;
namespace System.IO
{
// Token: 0x0200012F RID: 303
internal class WindowsWatcher : IFileWatcher
{
// Token: 0x06000A6E RID: 2670 RVA: 0x0001D900 File Offset: 0x0001BB00
private WindowsWatcher()
{
}
// Token: 0x06000A6F RID: 2671 RVA: 0x0001D908 File Offset: 0x0001BB08
public static bool GetInstance(out IFileWatcher watcher)
{
throw new NotSupportedException();
}
// Token: 0x06000A70 RID: 2672 RVA: 0x0001D910 File Offset: 0x0001BB10
public void StartDispatching(FileSystemWatcher fsw)
{
}
// Token: 0x06000A71 RID: 2673 RVA: 0x0001D914 File Offset: 0x0001BB14
public void StopDispatching(FileSystemWatcher fsw)
{
}
}
}