1 implementation of GetTypeParam
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
1225public ITypeHandle GetTypeParam(ITypeHandle typeHandle)
18 references to GetTypeParam
Microsoft.Diagnostics.DataContractReader.Legacy (18)
ClrDataTypeInstance.cs (1)
147definitionType = rts.GetTypeParam(_typeHandle);
Dbi\DacDbiImpl.cs (3)
5540ITypeHandle componentTypeHandle = rts.GetTypeParam(arrayOrStringTypeHandle); 6493ITypeHandle elemTypeHandle = rts.GetTypeParam(typeHandle); 6506ITypeHandle paramTypeHandle = rts.GetTypeParam(typeHandle);
SigFormat.cs (6)
170th = runtimeTypeSystem.GetTypeParam(th); 323typeHandle = runtimeTypeSystem.GetTypeParam(typeHandle); 384AddType(target, stringBuilder, runtimeTypeSystem.GetTypeParam(typeHandle)); 389AddType(target, stringBuilder, runtimeTypeSystem.GetTypeParam(typeHandle)); 403AddType(target, stringBuilder, runtimeTypeSystem.GetTypeParam(typeHandle)); 408AddType(target, stringBuilder, runtimeTypeSystem.GetTypeParam(typeHandle));
SOSDacImpl.cs (3)
1095ITypeHandle paramTypeHandle = rtsContract.GetTypeParam(foundTypeHandle); 3375ITypeHandle element = runtimeTypeSystemContract.GetTypeParam(handle); 3382element = runtimeTypeSystemContract.GetTypeParam(element);
TypeHandleExtensions.cs (2)
33AppendName(runtimeTypeSystem.GetTypeParam(typeHandle), target, result); 69AppendName(runtimeTypeSystem.GetTypeParam(typeHandle), target, result);
TypeNameBuilder.cs (3)
154typeInstantiationSigFormat = new[] { runtimeTypeSystem.GetTypeParam(th) }; 216AppendTypeCore(ref tnb, typeSystemContract.GetTypeParam(typeHandle), default, (TypeNameFormat)(format & ~TypeNameFormat.FormatAssembly)); 222AppendTypeCore(ref tnb, typeSystemContract.GetTypeParam(typeHandle), default, format & ~TypeNameFormat.FormatAssembly);