Files
Dec2017-Script-Dump/System/IO/NotifyFilters.cs
T
2026-06-04 11:42:34 +02:00

37 lines
1.1 KiB
C#

using System;
namespace System.IO
{
/// <summary>Specifies changes to watch for in a file or folder.</summary>
/// <filterpriority>2</filterpriority>
// Token: 0x02000127 RID: 295
[Flags]
public enum NotifyFilters
{
/// <summary>The attributes of the file or folder.</summary>
// Token: 0x04000AB4 RID: 2740
Attributes = 4,
/// <summary>The time the file or folder was created.</summary>
// Token: 0x04000AB5 RID: 2741
CreationTime = 64,
/// <summary>The name of the directory.</summary>
// Token: 0x04000AB6 RID: 2742
DirectoryName = 2,
/// <summary>The name of the file.</summary>
// Token: 0x04000AB7 RID: 2743
FileName = 1,
/// <summary>The date the file or folder was last opened.</summary>
// Token: 0x04000AB8 RID: 2744
LastAccess = 32,
/// <summary>The date the file or folder last had anything written to it.</summary>
// Token: 0x04000AB9 RID: 2745
LastWrite = 16,
/// <summary>The security settings of the file or folder.</summary>
// Token: 0x04000ABA RID: 2746
Security = 256,
/// <summary>The size of the file or folder.</summary>
// Token: 0x04000ABB RID: 2747
Size = 8
}
}