Files
2026-06-04 11:42:34 +02:00

22 lines
746 B
C#

using System;
namespace System.Runtime.InteropServices
{
/// <summary>Describes the callbacks that the type library importer makes when importing a type library.</summary>
// Token: 0x02000328 RID: 808
[ComVisible(true)]
[Serializable]
public enum ImporterEventKind
{
/// <summary>Specifies that the event is invoked when a type has been imported.</summary>
// Token: 0x04000D5C RID: 3420
NOTIF_TYPECONVERTED,
/// <summary>Specifies that the event is invoked when a warning occurs during conversion.</summary>
// Token: 0x04000D5D RID: 3421
NOTIF_CONVERTWARNING,
/// <summary>This property is not supported in this version of the .NET Framework.</summary>
// Token: 0x04000D5E RID: 3422
ERROR_REFTOINVALIDTYPELIB
}
}