Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

70 lines
2.5 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides data for the <see cref="E:System.ComponentModel.TypeDescriptor.Refreshed" /> event.</summary>
// Token: 0x02000181 RID: 385
[Token(Token = "0x2000181")]
public class RefreshEventArgs : EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.RefreshEventArgs" /> class with the component that has changed.</summary>
/// <param name="componentChanged">The component that changed.</param>
// Token: 0x06000A41 RID: 2625 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A41")]
[Address(RVA = "0xC27B00", Offset = "0xC26B00", VA = "0x180C27B00")]
public RefreshEventArgs(object componentChanged)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.RefreshEventArgs" /> class with the type of component that has changed.</summary>
/// <param name="typeChanged">The <see cref="T:System.Type" /> that changed.</param>
// Token: 0x06000A42 RID: 2626 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A42")]
[Address(RVA = "0xC27B80", Offset = "0xC26B80", VA = "0x180C27B80")]
public RefreshEventArgs(Type typeChanged)
{
}
/// <summary>Gets the component that changed its properties, events, or extenders.</summary>
/// <returns>The component that changed its properties, events, or extenders, or <see langword="null" /> if all components of the same type have changed.</returns>
// Token: 0x17000203 RID: 515
// (get) Token: 0x06000A43 RID: 2627 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000203")]
public object ComponentChanged
{
[Token(Token = "0x6000A43")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
get
{
return null;
}
}
/// <summary>Gets the <see cref="T:System.Type" /> that changed its properties or events.</summary>
/// <returns>The <see cref="T:System.Type" /> that changed its properties or events.</returns>
// Token: 0x17000204 RID: 516
// (get) Token: 0x06000A44 RID: 2628 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000204")]
public Type TypeChanged
{
[Token(Token = "0x6000A44")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
get
{
return null;
}
}
// Token: 0x040005DA RID: 1498
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40005DA")]
private object componentChanged;
// Token: 0x040005DB RID: 1499
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x40005DB")]
private Type typeChanged;
}
}