using System;
namespace System.ComponentModel
{
/// Specifies that this object supports a simple, transacted notification for batch initialization.
// Token: 0x02000091 RID: 145
public interface ISupportInitialize
{
/// Signals the object that initialization is starting.
// Token: 0x060004F8 RID: 1272
void BeginInit();
/// Signals the object that initialization is complete.
// Token: 0x060004F9 RID: 1273
void EndInit();
}
}