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