28 lines
905 B
C#
28 lines
905 B
C#
using System;
|
|
|
|
namespace System.IO
|
|
{
|
|
/// <summary>Changes that might occur to a file or directory.</summary>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x0200012E RID: 302
|
|
[Flags]
|
|
public enum WatcherChangeTypes
|
|
{
|
|
/// <summary>The creation, deletion, change, or renaming of a file or folder.</summary>
|
|
// Token: 0x04000AD3 RID: 2771
|
|
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: 0x04000AD4 RID: 2772
|
|
Changed = 4,
|
|
/// <summary>The creation of a file or folder.</summary>
|
|
// Token: 0x04000AD5 RID: 2773
|
|
Created = 1,
|
|
/// <summary>The deletion of a file or folder.</summary>
|
|
// Token: 0x04000AD6 RID: 2774
|
|
Deleted = 2,
|
|
/// <summary>The renaming of a file or folder.</summary>
|
|
// Token: 0x04000AD7 RID: 2775
|
|
Renamed = 8
|
|
}
|
|
}
|