32 lines
1018 B
C#
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: 0x02000144 RID: 324
|
|
[Token(Token = "0x2000144")]
|
|
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: 0x1700017A RID: 378
|
|
// (get) Token: 0x060007E5 RID: 2021
|
|
[Token(Token = "0x1700017A")]
|
|
bool IsInitialized
|
|
{
|
|
[Token(Token = "0x60007E5")]
|
|
[Address(Slot = "0")]
|
|
get;
|
|
}
|
|
|
|
/// <summary>Occurs when initialization of the component is completed.</summary>
|
|
// Token: 0x1400000D RID: 13
|
|
// (add) Token: 0x060007E6 RID: 2022
|
|
// (remove) Token: 0x060007E7 RID: 2023
|
|
[Token(Token = "0x1400000D")]
|
|
event EventHandler Initialized;
|
|
}
|
|
}
|