ISupportInitializeNotification Interface
Allows coordination of initialization for a component and its dependent properties.
Assembly: System (in System.dll)
| Name | Description | |
|---|---|---|
![]() | IsInitialized | Gets a value indicating whether the component is initialized. |
| Name | Description | |
|---|---|---|
![]() | BeginInit() | Signals the object that initialization is starting.(Inherited from ISupportInitialize.) |
![]() | EndInit() | Signals the object that initialization is complete.(Inherited from ISupportInitialize.) |
| Name | Description | |
|---|---|---|
![]() | Initialized | Occurs when initialization of the component is completed. |
You should implement this interface when your component has initialization dependencies on other components that also implement the ISupportInitializeNotification interface. You can check to see if the dependent components have completed initialization by checking the IsInitialized property.
ISupportInitializeNotification is implemented by the BindingSource and ListControl types.
Available since 2.0


