25 lines
843 B
C#
25 lines
843 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Specifies how the collection is changed.</summary>
|
|
// Token: 0x020000F3 RID: 243
|
|
[Token(Token = "0x20000F3")]
|
|
public enum CollectionChangeAction
|
|
{
|
|
/// <summary>Specifies that an element was added to the collection.</summary>
|
|
// Token: 0x04000474 RID: 1140
|
|
[Token(Token = "0x4000474")]
|
|
Add = 1,
|
|
/// <summary>Specifies that an element was removed from the collection.</summary>
|
|
// Token: 0x04000475 RID: 1141
|
|
[Token(Token = "0x4000475")]
|
|
Remove,
|
|
/// <summary>Specifies that the entire collection has changed. This is caused by using methods that manipulate the entire collection, such as <see cref="M:System.Collections.CollectionBase.Clear" />.</summary>
|
|
// Token: 0x04000476 RID: 1142
|
|
[Token(Token = "0x4000476")]
|
|
Refresh
|
|
}
|
|
}
|