1 implementation of GetInstantiation
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
778public ReadOnlySpan<TypeHandle> GetInstantiation(TypeHandle typeHandle)
13 references to GetInstantiation
Microsoft.Diagnostics.DataContractReader.Contracts (2)
Contracts\Signature\SignatureTypeProvider.cs (1)
55return _runtimeTypeSystem.GetInstantiation(typeContext)[index];
Contracts\StackWalk\GC\GcSignatureTypeProvider.cs (1)
120ReadOnlySpan<TypeHandle> instantiation = rts.GetInstantiation(classCtx);
Microsoft.Diagnostics.DataContractReader.Legacy (11)
ClrDataFrame.cs (1)
764ReadOnlySpan<TypeHandle> typeInst = rts.GetInstantiation(declaringType);
ClrDataMethodDefinition.cs (1)
50return !rts.GetInstantiation(mt).IsEmpty;
Dbi\DacDbiImpl.cs (5)
1894if (rts.GetInstantiation(thApprox).Length == 0) 2538: rts.GetInstantiation(thMatchingParent); 2683ReadOnlySpan<TypeHandle> instantiation = rts.GetInstantiation(typeHandle); 4633ReadOnlySpan<TypeHandle> instantiation = rts.GetInstantiation(typeHandle); 4689ReadOnlySpan<TypeHandle> instantiation = rts.GetInstantiation(typeHandle);
SigFormat.cs (1)
361ReadOnlySpan<TypeHandle> instantiation = runtimeTypeSystem.GetInstantiation(typeHandle);
SOSDacImpl.IXCLRDataProcess.cs (1)
430return !rts.GetInstantiation(mt).IsEmpty;
TypeNameBuilder.cs (2)
152typeInstantiationSigFormat = runtimeTypeSystem.GetInstantiation(th); 306ReadOnlySpan<TypeHandle> instantiationSpan = typeSystemContract.GetInstantiation(typeHandle);