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