1 implementation of GetTypeParam
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
945public TypeHandle GetTypeParam(TypeHandle typeHandle)
14 references to GetTypeParam
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\StackWalk\GC\GcSignatureTypeProvider.cs (1)
117return ClassifyTypeHandle(rts.GetTypeParam(classCtx));
Microsoft.Diagnostics.DataContractReader.Legacy (13)
Dbi\DacDbiImpl.cs (1)
2107TypeHandle componentTypeHandle = rts.GetTypeParam(arrayOrStringTypeHandle);
SigFormat.cs (6)
170th = runtimeTypeSystem.GetTypeParam(th); 320typeHandle = runtimeTypeSystem.GetTypeParam(typeHandle); 381AddType(target, stringBuilder, runtimeTypeSystem.GetTypeParam(typeHandle)); 386AddType(target, stringBuilder, runtimeTypeSystem.GetTypeParam(typeHandle)); 400AddType(target, stringBuilder, runtimeTypeSystem.GetTypeParam(typeHandle)); 405AddType(target, stringBuilder, runtimeTypeSystem.GetTypeParam(typeHandle));
SOSDacImpl.cs (3)
1118TypeHandle paramTypeHandle = rtsContract.GetTypeParam(foundTypeHandle); 3383TypeHandle element = runtimeTypeSystemContract.GetTypeParam(handle); 3390element = runtimeTypeSystemContract.GetTypeParam(element);
TypeNameBuilder.cs (3)
157typeInstantiationSigFormat = new[] { runtimeTypeSystem.GetTypeParam(th) }; 219AppendTypeCore(ref tnb, typeSystemContract.GetTypeParam(typeHandle), default(ReadOnlySpan<Contracts.TypeHandle>), (TypeNameFormat)(format & ~TypeNameFormat.FormatAssembly)); 225AppendTypeCore(ref tnb, typeSystemContract.GetTypeParam(typeHandle), Array.Empty<Contracts.TypeHandle>(), format & ~TypeNameFormat.FormatAssembly);