//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.ComponentModel { using System.Diagnostics; using System; /// /// /// /// Extends ISupportInitialize to allow dependent components to be notified when initialization is complete. /// /// public interface ISupportInitializeNotification : ISupportInitialize { /// /// /// /// Indicates whether initialization is complete yet. /// /// bool IsInitialized { get; } /// /// /// /// Sent when initialization is complete. /// /// event EventHandler Initialized; } }