Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020000F4 RID: 244
[Token(Token = "0x20000F4")]
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: 0x060005FD RID: 1533 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005FD")]
[Address(RVA = "0xB942A0", Offset = "0xB932A0", VA = "0x180B942A0")]
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: 0x1700010A RID: 266
// (get) Token: 0x060005FE RID: 1534 RVA: 0x00004650 File Offset: 0x00002850
[Token(Token = "0x1700010A")]
public virtual CollectionChangeAction Action
{
[Token(Token = "0x60005FE")]
[Address(RVA = "0x40F000", Offset = "0x40E000", VA = "0x18040F000", 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: 0x1700010B RID: 267
// (get) Token: 0x060005FF RID: 1535 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700010B")]
public virtual object Element
{
[Token(Token = "0x60005FF")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0", Slot = "5")]
get
{
return null;
}
}
// Token: 0x04000477 RID: 1143
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000477")]
private CollectionChangeAction action;
// Token: 0x04000478 RID: 1144
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000478")]
private object element;
}
}