20 lines
694 B
C#
20 lines
694 B
C#
using System;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Specifies how the collection is changed.</summary>
|
|
// Token: 0x02000061 RID: 97
|
|
public enum CollectionChangeAction
|
|
{
|
|
/// <summary>Specifies that an element was added to the collection.</summary>
|
|
// Token: 0x0400013D RID: 317
|
|
Add = 1,
|
|
/// <summary>Specifies that an element was removed from the collection.</summary>
|
|
// Token: 0x0400013E RID: 318
|
|
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: 0x0400013F RID: 319
|
|
Refresh
|
|
}
|
|
}
|