Files
Aug2021-Cpp2IL-Dump/System/IO/FileSystemEventArgs.cs
T
2026-04-10 22:50:51 +02:00

38 lines
1.5 KiB
C#

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: 0x020001FE RID: 510
[Token(Token = "0x20001FE")]
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: 0x06000D31 RID: 3377 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000D31")]
[Address(RVA = "0x29E3A70", Offset = "0x29E2870", VA = "0x1829E3A70")]
public FileSystemEventArgs(WatcherChangeTypes changeType, string directory, string name)
{
}
// Token: 0x04000728 RID: 1832
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000728")]
private WatcherChangeTypes changeType;
// Token: 0x04000729 RID: 1833
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000729")]
private string directory;
// Token: 0x0400072A RID: 1834
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x400072A")]
private string name;
}
}