ModuleHandle.cs 1.8 KB

12345678910111213141516171819202122232425
  1. namespace System
  2. {
  3. public partial struct ModuleHandle
  4. {
  5. private object _dummy;
  6. public static readonly System.ModuleHandle EmptyHandle;
  7. public int MDStreamVersion { get { throw null; } }
  8. public bool Equals(System.ModuleHandle handle) { throw null; }
  9. public override bool Equals(object obj) { throw null; }
  10. public override int GetHashCode() { throw null; }
  11. public System.RuntimeFieldHandle GetRuntimeFieldHandleFromMetadataToken(int fieldToken) { throw null; }
  12. public System.RuntimeMethodHandle GetRuntimeMethodHandleFromMetadataToken(int methodToken) { throw null; }
  13. public System.RuntimeTypeHandle GetRuntimeTypeHandleFromMetadataToken(int typeToken) { throw null; }
  14. public static bool operator ==(System.ModuleHandle left, System.ModuleHandle right) { throw null; }
  15. public static bool operator !=(System.ModuleHandle left, System.ModuleHandle right) { throw null; }
  16. public System.RuntimeFieldHandle ResolveFieldHandle(int fieldToken) { throw null; }
  17. public System.RuntimeFieldHandle ResolveFieldHandle(int fieldToken, System.RuntimeTypeHandle[] typeInstantiationContext, System.RuntimeTypeHandle[] methodInstantiationContext) { throw null; }
  18. public System.RuntimeMethodHandle ResolveMethodHandle(int methodToken) { throw null; }
  19. public System.RuntimeMethodHandle ResolveMethodHandle(int methodToken, System.RuntimeTypeHandle[] typeInstantiationContext, System.RuntimeTypeHandle[] methodInstantiationContext) { throw null; }
  20. public System.RuntimeTypeHandle ResolveTypeHandle(int typeToken) { throw null; }
  21. public System.RuntimeTypeHandle ResolveTypeHandle(int typeToken, System.RuntimeTypeHandle[] typeInstantiationContext, System.RuntimeTypeHandle[] methodInstantiationContext) { throw null; }
  22. public IntPtr Value => throw new NotImplementedException ();
  23. }
  24. }