ModuleHandle.ResolveMethodHandle Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a runtime method handle for a method or constructor identified by a metadata token.
Overloads
ResolveMethodHandle(Int32) |
Returns a runtime method handle for the method or constructor identified by the specified metadata token. |
ResolveMethodHandle(Int32, RuntimeTypeHandle[], RuntimeTypeHandle[]) |
Returns a runtime method handle for the method or constructor identified by the specified metadata token, specifying the generic type arguments of the type and method where the token is in scope. |
ResolveMethodHandle(Int32)
- Source:
- RuntimeHandles.cs
- Source:
- RuntimeHandles.cs
- Source:
- RuntimeHandles.cs
Returns a runtime method handle for the method or constructor identified by the specified metadata token.
public:
RuntimeMethodHandle ResolveMethodHandle(int methodToken);
public RuntimeMethodHandle ResolveMethodHandle (int methodToken);
member this.ResolveMethodHandle : int -> RuntimeMethodHandle
Public Function ResolveMethodHandle (methodToken As Integer) As RuntimeMethodHandle
Parameters
- methodToken
- Int32
A metadata token that identifies a method or constructor in the module.
Returns
A RuntimeMethodHandle for the method or constructor identified by methodToken
.
Exceptions
methodToken
is not a valid metadata token for a method in the current module.
-or-
methodToken
is not a token for a method or constructor in the scope of the current module.
-or-
methodToken
is a MethodSpec
whose signature contains element type var
or mvar
.
The method is called on an empty method handle.
Remarks
To resolve a metadata token for a MethodSpec
whose signature contains element type var
or mvar
, use the ResolveMethodHandle(Int32, RuntimeTypeHandle[], RuntimeTypeHandle[]) method overload, which allows you to supply the necessary context.
Note
Information about metadata tokens can be found in the Common Language Infrastructure (CLI) documentation, especially "Partition II: Metadata Definition and Semantics".
Applies to
ResolveMethodHandle(Int32, RuntimeTypeHandle[], RuntimeTypeHandle[])
- Source:
- RuntimeHandles.cs
- Source:
- RuntimeHandles.cs
- Source:
- RuntimeHandles.cs
Returns a runtime method handle for the method or constructor identified by the specified metadata token, specifying the generic type arguments of the type and method where the token is in scope.
public:
RuntimeMethodHandle ResolveMethodHandle(int methodToken, cli::array <RuntimeTypeHandle> ^ typeInstantiationContext, cli::array <RuntimeTypeHandle> ^ methodInstantiationContext);
public RuntimeMethodHandle ResolveMethodHandle (int methodToken, RuntimeTypeHandle[]? typeInstantiationContext, RuntimeTypeHandle[]? methodInstantiationContext);
public RuntimeMethodHandle ResolveMethodHandle (int methodToken, RuntimeTypeHandle[] typeInstantiationContext, RuntimeTypeHandle[] methodInstantiationContext);
member this.ResolveMethodHandle : int * RuntimeTypeHandle[] * RuntimeTypeHandle[] -> RuntimeMethodHandle
Public Function ResolveMethodHandle (methodToken As Integer, typeInstantiationContext As RuntimeTypeHandle(), methodInstantiationContext As RuntimeTypeHandle()) As RuntimeMethodHandle
Parameters
- methodToken
- Int32
A metadata token that identifies a method or constructor in the module.
- typeInstantiationContext
- RuntimeTypeHandle[]
An array of RuntimeTypeHandle structures representing the generic type arguments of the type where the token is in scope, or null
if that type is not generic.
- methodInstantiationContext
- RuntimeTypeHandle[]
An array of RuntimeTypeHandle structures representing the generic type arguments of the method where the token is in scope, or null
if that method is not generic.
Returns
A RuntimeMethodHandle for the method or constructor identified by methodToken
.
Exceptions
methodToken
is not a valid metadata token for a method in the current module.
-or-
methodToken
is not a token for a method or constructor in the scope of the current module.
-or-
methodToken
is a MethodSpec
whose signature contains element type var
or mvar
.
The method is called on an empty method handle.
methodToken
is not a valid token.
Remarks
Note
Information about metadata tokens can be found in the Common Language Infrastructure (CLI) documentation, especially "Partition II: Metadata Definition and Semantics".