Files
2026-04-10 22:50:51 +02:00

62 lines
2.4 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides data for the <see cref="E:System.Data.DataColumnCollection.CollectionChanged" /> event.</summary>
// Token: 0x020000F8 RID: 248
[Token(Token = "0x20000F8")]
public class CollectionChangeEventArgs : EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> class.</summary>
/// <param name="action">One of the <see cref="T:System.ComponentModel.CollectionChangeAction" /> values that specifies how the collection changed.</param>
/// <param name="element">An <see cref="T:System.Object" /> that specifies the instance of the collection where the change occurred.</param>
// Token: 0x06000613 RID: 1555 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000613")]
[Address(RVA = "0x497540", Offset = "0x496340", VA = "0x180497540")]
public CollectionChangeEventArgs(CollectionChangeAction action, object element)
{
}
/// <summary>Gets an action that specifies how the collection changed.</summary>
/// <returns>One of the <see cref="T:System.ComponentModel.CollectionChangeAction" /> values.</returns>
// Token: 0x1700010E RID: 270
// (get) Token: 0x06000614 RID: 1556 RVA: 0x00004668 File Offset: 0x00002868
[Token(Token = "0x1700010E")]
public virtual CollectionChangeAction Action
{
[Token(Token = "0x6000614")]
[Address(RVA = "0x3FA560", Offset = "0x3F9360", VA = "0x1803FA560", Slot = "4")]
get
{
return (CollectionChangeAction)0;
}
}
/// <summary>Gets the instance of the collection with the change.</summary>
/// <returns>An <see cref="T:System.Object" /> that represents the instance of the collection with the change, or <see langword="null" /> if you refresh the collection.</returns>
// Token: 0x1700010F RID: 271
// (get) Token: 0x06000615 RID: 1557 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700010F")]
public virtual object Element
{
[Token(Token = "0x6000615")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40", Slot = "5")]
get
{
return null;
}
}
// Token: 0x04000484 RID: 1156
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000484")]
private CollectionChangeAction action;
// Token: 0x04000485 RID: 1157
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000485")]
private object element;
}
}