This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
using System;
using Cpp2IlInjected;
namespace System.IO
{
/// <summary>Provides data for the directory events: <see cref="E:System.IO.FileSystemWatcher.Changed" />, <see cref="E:System.IO.FileSystemWatcher.Created" />, <see cref="E:System.IO.FileSystemWatcher.Deleted" />.</summary>
// Token: 0x020001FA RID: 506
[Token(Token = "0x20001FA")]
public class FileSystemEventArgs : EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.IO.FileSystemEventArgs" /> class.</summary>
/// <param name="changeType">One of the <see cref="T:System.IO.WatcherChangeTypes" /> values, which represents the kind of change detected in the file system.</param>
/// <param name="directory">The root directory of the affected file or directory.</param>
/// <param name="name">The name of the affected file or directory.</param>
// Token: 0x06000D1B RID: 3355 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000D1B")]
[Address(RVA = "0xDD1190", Offset = "0xDD0190", VA = "0x180DD1190")]
public FileSystemEventArgs(WatcherChangeTypes changeType, string directory, string name)
{
}
// Token: 0x0400071B RID: 1819
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400071B")]
private WatcherChangeTypes changeType;
// Token: 0x0400071C RID: 1820
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400071C")]
private string directory;
// Token: 0x0400071D RID: 1821
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x400071D")]
private string name;
}
}