ExporterEventKind.cs 364 B

123456789101112131415161718
  1. //
  2. // System.Runtime.InteropServices.ExporterEventKind.cs
  3. //
  4. // Author:
  5. // Kevin Winchester ([email protected])
  6. //
  7. // (C) 2002 Kevin Winchester
  8. //
  9. namespace System.Runtime.InteropServices
  10. {
  11. [Serializable] public enum ExporterEventKind
  12. {
  13. NOTIF_TYPECONVERTED = 0,
  14. NOTIF_CONVERTWARNING = 1,
  15. ERROR_REFTOINVALIDASSEMBLY = 2,
  16. }
  17. }