using System;
using Cpp2IlInjected;
namespace System.IO
{
/// Provides data for the directory events: , , .
// Token: 0x020001FA RID: 506
[Token(Token = "0x20001FA")]
public class FileSystemEventArgs : EventArgs
{
/// Initializes a new instance of the class.
/// One of the values, which represents the kind of change detected in the file system.
/// The root directory of the affected file or directory.
/// The name of the affected file or directory.
// 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;
}
}