| 1234567891011121314151617181920212223 |
- //
- // System.ComponentModel.ISupportInitialize.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- //
- // (C) Ximian, Inc
- //
- namespace System.ComponentModel
- {
- /// <summary>
- /// Specifies that this object supports a simple, transacted notification for batch initialization.
- /// </summary>
- public interface ISupportInitialize
- {
- void BeginInit ();
- void EndInit ();
- }
-
- }
-
|