m
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.IO
|
||||
{
|
||||
/// <summary>Specifies changes to watch for in a file or folder.</summary>
|
||||
// Token: 0x02000201 RID: 513
|
||||
[Token(Token = "0x2000201")]
|
||||
[Flags]
|
||||
public enum NotifyFilters
|
||||
{
|
||||
/// <summary>The attributes of the file or folder.</summary>
|
||||
// Token: 0x04000737 RID: 1847
|
||||
[Token(Token = "0x4000737")]
|
||||
Attributes = 4,
|
||||
/// <summary>The time the file or folder was created.</summary>
|
||||
// Token: 0x04000738 RID: 1848
|
||||
[Token(Token = "0x4000738")]
|
||||
CreationTime = 64,
|
||||
/// <summary>The name of the directory.</summary>
|
||||
// Token: 0x04000739 RID: 1849
|
||||
[Token(Token = "0x4000739")]
|
||||
DirectoryName = 2,
|
||||
/// <summary>The name of the file.</summary>
|
||||
// Token: 0x0400073A RID: 1850
|
||||
[Token(Token = "0x400073A")]
|
||||
FileName = 1,
|
||||
/// <summary>The date the file or folder was last opened.</summary>
|
||||
// Token: 0x0400073B RID: 1851
|
||||
[Token(Token = "0x400073B")]
|
||||
LastAccess = 32,
|
||||
/// <summary>The date the file or folder last had anything written to it.</summary>
|
||||
// Token: 0x0400073C RID: 1852
|
||||
[Token(Token = "0x400073C")]
|
||||
LastWrite = 16,
|
||||
/// <summary>The security settings of the file or folder.</summary>
|
||||
// Token: 0x0400073D RID: 1853
|
||||
[Token(Token = "0x400073D")]
|
||||
Security = 256,
|
||||
/// <summary>The size of the file or folder.</summary>
|
||||
// Token: 0x0400073E RID: 1854
|
||||
[Token(Token = "0x400073E")]
|
||||
Size = 8
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user