ModuleHandle.ResolveMethodHandle Method

Definition

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)

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-

metadataToken is not a token for a method or constructor in the scope of the current module.

-or-

metadataToken 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[])

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-

metadataToken is not a token for a method or constructor in the scope of the current module.

-or-

metadataToken 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".

Applies to