using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies that this object supports a simple, transacted notification for batch initialization.
// Token: 0x0200013F RID: 319
[Token(Token = "0x200013F")]
[SRDescription("Specifies support for transacted initialization.")]
public interface ISupportInitialize
{
/// Signals the object that initialization is starting.
// Token: 0x060007CD RID: 1997
[Token(Token = "0x60007CD")]
[Address(Slot = "0")]
void BeginInit();
/// Signals the object that initialization is complete.
// Token: 0x060007CE RID: 1998
[Token(Token = "0x60007CE")]
[Address(Slot = "1")]
void EndInit();
}
}