Files
27Aug2021-Cpp2IL-Dump/System/ComponentModel/ISupportInitializeNotification.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

32 lines
1018 B
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Allows coordination of initialization for a component and its dependent properties.</summary>
// Token: 0x02000140 RID: 320
[Token(Token = "0x2000140")]
public interface ISupportInitializeNotification : ISupportInitialize
{
/// <summary>Gets a value indicating whether the component is initialized.</summary>
/// <returns>
/// <see langword="true" /> to indicate the component has completed initialization; otherwise, <see langword="false" />.</returns>
// Token: 0x17000176 RID: 374
// (get) Token: 0x060007CF RID: 1999
[Token(Token = "0x17000176")]
bool IsInitialized
{
[Token(Token = "0x60007CF")]
[Address(Slot = "0")]
get;
}
/// <summary>Occurs when initialization of the component is completed.</summary>
// Token: 0x1400000C RID: 12
// (add) Token: 0x060007D0 RID: 2000
// (remove) Token: 0x060007D1 RID: 2001
[Token(Token = "0x1400000C")]
event EventHandler Initialized;
}
}