CodedIndex.cs 515 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // Author:
  3. // Jb Evain (jbevain@gmail.com)
  4. //
  5. // Copyright (c) 2008 - 2015 Jb Evain
  6. // Copyright (c) 2008 - 2011 Novell, Inc.
  7. //
  8. // Licensed under the MIT/X11 license.
  9. //
  10. namespace ILRuntime.Mono.Cecil.Metadata {
  11. enum CodedIndex {
  12. TypeDefOrRef,
  13. HasConstant,
  14. HasCustomAttribute,
  15. HasFieldMarshal,
  16. HasDeclSecurity,
  17. MemberRefParent,
  18. HasSemantics,
  19. MethodDefOrRef,
  20. MemberForwarded,
  21. Implementation,
  22. CustomAttributeType,
  23. ResolutionScope,
  24. TypeOrMethodDef,
  25. HasCustomDebugInformation,
  26. }
  27. }