22 lines
792 B
C#
22 lines
792 B
C#
using System;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Allows coordination of initialization for a component and its dependent properties.</summary>
|
|
// Token: 0x02000092 RID: 146
|
|
public interface ISupportInitializeNotification : ISupportInitialize
|
|
{
|
|
/// <summary>Occurs when initialization of the component is completed.</summary>
|
|
// Token: 0x14000017 RID: 23
|
|
// (add) Token: 0x060004FA RID: 1274
|
|
// (remove) Token: 0x060004FB RID: 1275
|
|
event EventHandler Initialized;
|
|
|
|
/// <summary>Gets a value indicating whether the component is initialized.</summary>
|
|
/// <returns>true to indicate the component has completed initialization; otherwise, false. </returns>
|
|
// Token: 0x1700014F RID: 335
|
|
// (get) Token: 0x060004FC RID: 1276
|
|
bool IsInitialized { get; }
|
|
}
|
|
}
|