// // System.ComponentModel.ISupportInitialize.cs // // Author: // Rodrigo Moya (rodrigo@ximian.com) // // (C) Ximian, Inc // namespace System.ComponentModel { /// /// Specifies that this object supports a simple, transacted notification for batch initialization. /// public interface ISupportInitialize { void BeginInit (); void EndInit (); } }