This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies that this object supports a simple, transacted notification for batch initialization.</summary>
// Token: 0x0200013F RID: 319
[Token(Token = "0x200013F")]
[SRDescription("Specifies support for transacted initialization.")]
public interface ISupportInitialize
{
/// <summary>Signals the object that initialization is starting.</summary>
// Token: 0x060007CD RID: 1997
[Token(Token = "0x60007CD")]
[Address(Slot = "0")]
void BeginInit();
/// <summary>Signals the object that initialization is complete.</summary>
// Token: 0x060007CE RID: 1998
[Token(Token = "0x60007CE")]
[Address(Slot = "1")]
void EndInit();
}
}