This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
namespace System.ComponentModel
{
/// <summary>Allows coordination of initialization for a component and its dependent properties.</summary>
// Token: 0x02000092 RID: 146
public interface ISupportInitializeNotification : ISupportInitialize
{
/// <summary>Occurs when initialization of the component is completed.</summary>
// Token: 0x14000017 RID: 23
// (add) Token: 0x060004FA RID: 1274
// (remove) Token: 0x060004FB RID: 1275
event EventHandler Initialized;
/// <summary>Gets a value indicating whether the component is initialized.</summary>
/// <returns>true to indicate the component has completed initialization; otherwise, false. </returns>
// Token: 0x1700014F RID: 335
// (get) Token: 0x060004FC RID: 1276
bool IsInitialized { get; }
}
}