1 instantiation of MethodSpecification
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
1274return new MethodSpecification(this, handle);
9 references to MethodSpecification
ILCompiler.ReadyToRun (4)
Compiler\DependencyAnalysis\ReadyToRun\ModuleTokenResolver.cs (1)
168MethodSpecification methodSpec = token.MetadataReader.GetMethodSpecification((MethodSpecificationHandle)token.Handle);
Compiler\DependencyAnalysis\ReadyToRun\SignatureBuilder.cs (1)
481MethodSpecification methodSpecification = methodToken.MetadataReader.GetMethodSpecification((MethodSpecificationHandle)methodToken.Handle);
Compiler\ReadyToRunStandaloneMethodMetadata.cs (1)
189var methodSpecification = metadataReader.GetMethodSpecification((MethodSpecificationHandle)handle);
JitInterface\CorInfoImpl.ReadyToRun.cs (1)
179var methodSpecification = moduleToken.MetadataReader.GetMethodSpecification((MethodSpecificationHandle)moduleToken.Handle);
ILCompiler.TypeSystem (1)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaModule.cs (1)
535MethodSpecification methodSpecification = _metadataReader.GetMethodSpecification(handle);
Microsoft.CodeAnalysis (1)
MetadataReader\PEModule.cs (1)
3309var methodSpec = MetadataReader.GetMethodSpecification(handle);
System.Reflection.Metadata (2)
System\Reflection\Metadata\MetadataReader.cs (1)
1272public MethodSpecification GetMethodSpecification(MethodSpecificationHandle handle)
System\Reflection\Metadata\TypeSystem\MethodSpecification.cs (1)
27/// MethodDef or MemberRef handle specifying to which generic method this <see cref="MethodSpecification"/> refers,
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\General\Ecma\MetadataExtensions.cs (1)
45public static MethodSpecification GetMethodSpecification(this MethodSpecificationHandle handle, MetadataReader reader) => reader.GetMethodSpecification(handle);