38 lines
1.5 KiB
C#
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: 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;
|
|
}
|
|
}
|