1 implementation of GetTypeParam
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
1225public ITypeHandle GetTypeParam(ITypeHandle typeHandle)
20 references to GetTypeParam
Microsoft.Diagnostics.DataContractReader.Legacy (20)
ClrDataTypeInstance.cs (1)
211definitionType = rts.GetTypeParam(_typeHandle);
ClrDataValue.cs (2)
517typeHandle = rts.GetTypeParam(rts.GetTypeHandle(methodTable)); 653ITypeHandle elementType = rts.GetTypeParam(arrayType);
Dbi\DacDbiImpl.cs (3)
5692ITypeHandle componentTypeHandle = rts.GetTypeParam(arrayOrStringTypeHandle); 6694ITypeHandle elemTypeHandle = rts.GetTypeParam(typeHandle); 6707ITypeHandle 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)
1138ITypeHandle paramTypeHandle = rtsContract.GetTypeParam(foundTypeHandle); 3464ITypeHandle element = runtimeTypeSystemContract.GetTypeParam(handle); 3471element = 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);