Files
Dec2017-Script-Dump/mscorlib/System/Runtime/InteropServices/ExporterEventKind.cs
T
2026-06-04 11:42:34 +02:00

22 lines
744 B
C#

using System;
namespace System.Runtime.InteropServices
{
/// <summary>Describes the callbacks that the type library exporter makes when exporting a type library.</summary>
// Token: 0x0200030F RID: 783
[ComVisible(true)]
[Serializable]
public enum ExporterEventKind
{
/// <summary>Specifies that the event is invoked when a type has been exported.</summary>
// Token: 0x04000D15 RID: 3349
NOTIF_TYPECONVERTED,
/// <summary>Specifies that the event is invoked when a warning occurs during conversion.</summary>
// Token: 0x04000D16 RID: 3350
NOTIF_CONVERTWARNING,
/// <summary>This value is not supported in this version of the .NET Framework.</summary>
// Token: 0x04000D17 RID: 3351
ERROR_REFTOINVALIDASSEMBLY
}
}