34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.IO
|
|
{
|
|
/// <summary>Changes that might occur to a file or directory.</summary>
|
|
// Token: 0x02000209 RID: 521
|
|
[Token(Token = "0x2000209")]
|
|
[Flags]
|
|
public enum WatcherChangeTypes
|
|
{
|
|
/// <summary>The creation, deletion, change, or renaming of a file or folder.</summary>
|
|
// Token: 0x04000756 RID: 1878
|
|
[Token(Token = "0x4000756")]
|
|
All = 15,
|
|
/// <summary>The change of a file or folder. The types of changes include: changes to size, attributes, security settings, last write, and last access time.</summary>
|
|
// Token: 0x04000757 RID: 1879
|
|
[Token(Token = "0x4000757")]
|
|
Changed = 4,
|
|
/// <summary>The creation of a file or folder.</summary>
|
|
// Token: 0x04000758 RID: 1880
|
|
[Token(Token = "0x4000758")]
|
|
Created = 1,
|
|
/// <summary>The deletion of a file or folder.</summary>
|
|
// Token: 0x04000759 RID: 1881
|
|
[Token(Token = "0x4000759")]
|
|
Deleted = 2,
|
|
/// <summary>The renaming of a file or folder.</summary>
|
|
// Token: 0x0400075A RID: 1882
|
|
[Token(Token = "0x400075A")]
|
|
Renamed = 8
|
|
}
|
|
}
|