11 implementations of GetGenericTypeParameter
ILAssembler (1)
EntityRegistry.cs (1)
877public BlobOrHandle GetGenericTypeParameter(EmptyGenericContext genericContext, int index)
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRun\AttributePresenceFilterNode.cs (1)
158public DummyType GetGenericTypeParameter(DummyGenericContext genericContext, int index)
Compiler\DependencyAnalysis\ReadyToRun\ModuleTokenResolver.cs (1)
429public DummyTypeInfo GetGenericTypeParameter(ModuleTokenResolver genericContext, int index)
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\SymbolTree\SymbolTreeInfo.FirstEntityHandleProvider.cs (1)
57public EntityHandle GetGenericTypeParameter(object? genericContext, int index) => default;
FindSymbols\SymbolTree\SymbolTreeInfo.Node.cs (1)
147public ParameterTypeInfo GetGenericTypeParameter(object? genericContext, int index) => ComplexInfo;
Microsoft.Diagnostics.DataContractReader.Contracts (2)
Contracts\Signature\SignatureTypeProvider.cs (1)
49public TypeHandle GetGenericTypeParameter(T context, int index)
Contracts\StackWalk\GC\GcSignatureTypeProvider.cs (1)
101public GcTypeKind GetGenericTypeParameter(GcSignatureContext genericContext, int index)
Microsoft.Diagnostics.DataContractReader.Legacy (1)
ClrDataFrame.cs (1)
757public (uint Flags, int Size) GetGenericTypeParameter(MethodDescHandle mdh, int index)
System.Reflection.MetadataLoadContext (3)
System\Reflection\TypeLoading\General\Ecma\EcmaSignatureTypeProviderForToString.cs (1)
54public string GetGenericTypeParameter(TypeContext genericContext, int index) => genericContext.GetGenericTypeArgumentOrNull(index)?.ToString() ?? ("!" + index);
System\Reflection\TypeLoading\General\Ecma\EcmaWrappedTypeProvider.cs (1)
52public RoType GetGenericTypeParameter(TypeContext genericContext, int index) => _typeProvider.GetGenericTypeParameter(genericContext, index);
System\Reflection\TypeLoading\Modules\Ecma\EcmaModule.TypeProvider.cs (1)
35public RoType GetGenericTypeParameter(TypeContext genericContext, int index) => genericContext.GetGenericTypeArgumentOrNull(index) ?? throw new BadImageFormatException(SR.Format(SR.GenericTypeParamIndexOutOfRange, index));
2 references to GetGenericTypeParameter
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\Signature\RuntimeSignatureDecoder.cs (1)
108return _provider.GetGenericTypeParameter(_genericContext, index);
System.Reflection.Metadata (1)
System\Reflection\Metadata\Ecma335\SignatureDecoder.cs (1)
119return _provider.GetGenericTypeParameter(_genericContext, index);