3 overrides of ResolveMethod
System.Private.CoreLib (1)
System\Reflection\Runtime\Modules\RuntimeModule.cs (1)
91
public sealed override MethodBase
ResolveMethod
(int metadataToken, Type[] genericTypeArguments, Type[] genericMethodArguments) { throw new PlatformNotSupportedException(); }
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
149
public override MethodBase?
ResolveMethod
(int metadataToken, Type[]? genericTypeArguments, Type[]? genericMethodArguments)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Modules\RoModule.cs (1)
88
public sealed override MethodBase
ResolveMethod
(int metadataToken, Type[]? genericTypeArguments, Type[]? genericMethodArguments) => throw new NotSupportedException(SR.NotSupported_ResolvingTokens);
2 references to ResolveMethod
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Module.cs (1)
127
public MethodBase? ResolveMethod(int metadataToken) =>
ResolveMethod
(metadataToken, null, null);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
151
return UnderlyingModule.
ResolveMethod
(metadataToken, genericTypeArguments, genericMethodArguments);