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

42 lines
1.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies which event is raised on initialization. This class cannot be inherited.</summary>
// Token: 0x02000149 RID: 329
[Token(Token = "0x2000149")]
[AttributeUsage(AttributeTargets.Class)]
public sealed class InitializationEventAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InitializationEventAttribute" /> class.</summary>
/// <param name="eventName">The name of the initialization event.</param>
// Token: 0x060007F9 RID: 2041 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60007F9")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public InitializationEventAttribute(string eventName)
{
}
/// <summary>Gets the name of the initialization event.</summary>
/// <returns>The name of the initialization event.</returns>
// Token: 0x17000180 RID: 384
// (get) Token: 0x060007FA RID: 2042 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000180")]
public string EventName
{
[Token(Token = "0x60007FA")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
// Token: 0x040004F7 RID: 1271
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40004F7")]
private string eventName;
}
}