Files
Apr2020-Cpp2Il-Dump/System/IO/NotifyFilters.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

46 lines
1.4 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.IO
{
/// <summary>Specifies changes to watch for in a file or folder.</summary>
// Token: 0x02000205 RID: 517
[Token(Token = "0x2000205")]
[Flags]
public enum NotifyFilters
{
/// <summary>The attributes of the file or folder.</summary>
// Token: 0x04000744 RID: 1860
[Token(Token = "0x4000744")]
Attributes = 4,
/// <summary>The time the file or folder was created.</summary>
// Token: 0x04000745 RID: 1861
[Token(Token = "0x4000745")]
CreationTime = 64,
/// <summary>The name of the directory.</summary>
// Token: 0x04000746 RID: 1862
[Token(Token = "0x4000746")]
DirectoryName = 2,
/// <summary>The name of the file.</summary>
// Token: 0x04000747 RID: 1863
[Token(Token = "0x4000747")]
FileName = 1,
/// <summary>The date the file or folder was last opened.</summary>
// Token: 0x04000748 RID: 1864
[Token(Token = "0x4000748")]
LastAccess = 32,
/// <summary>The date the file or folder last had anything written to it.</summary>
// Token: 0x04000749 RID: 1865
[Token(Token = "0x4000749")]
LastWrite = 16,
/// <summary>The security settings of the file or folder.</summary>
// Token: 0x0400074A RID: 1866
[Token(Token = "0x400074A")]
Security = 256,
/// <summary>The size of the file or folder.</summary>
// Token: 0x0400074B RID: 1867
[Token(Token = "0x400074B")]
Size = 8
}
}