Files
2026-04-10 22:50:51 +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: 0x02000185 RID: 389
[Token(Token = "0x2000185")]
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: 0x06000A57 RID: 2647 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A57")]
[Address(RVA = "0x4D7D20", Offset = "0x4D6B20", VA = "0x1804D7D20")]
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: 0x06000A58 RID: 2648 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A58")]
[Address(RVA = "0x4D7DA0", Offset = "0x4D6BA0", VA = "0x1804D7DA0")]
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: 0x17000207 RID: 519
// (get) Token: 0x06000A59 RID: 2649 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000207")]
public object ComponentChanged
{
[Token(Token = "0x6000A59")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
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: 0x17000208 RID: 520
// (get) Token: 0x06000A5A RID: 2650 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000208")]
public Type TypeChanged
{
[Token(Token = "0x6000A5A")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
}
// Token: 0x040005E7 RID: 1511
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40005E7")]
private object componentChanged;
// Token: 0x040005E8 RID: 1512
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x40005E8")]
private Type typeChanged;
}
}