4 overrides of TypeContext
System.Private.CoreLib (4)
System\Reflection\Runtime\TypeInfos\RuntimeArrayTypeInfo.cs (1)
271
internal sealed override TypeContext
TypeContext
System\Reflection\Runtime\TypeInfos\RuntimeConstructedGenericTypeInfo.cs (1)
263
internal sealed override TypeContext
TypeContext
System\Reflection\Runtime\TypeInfos\RuntimeGenericParameterTypeInfo.cs (1)
123
internal abstract override TypeContext
TypeContext
{ get; }
System\Reflection\Runtime\TypeInfos\RuntimeNamedTypeInfo.cs (1)
190
internal sealed override TypeContext
TypeContext
15 references to TypeContext
System.Private.CoreLib (15)
System\Reflection\Runtime\CustomAttributes\NativeFormat\NativeFormatCustomAttributeData.cs (3)
85
expectedParameterTypes[index++] = parameterHandle.Resolve(reader, attributeRuntimeTypeInfo.
TypeContext
).ToType();
124
RuntimeTypeInfo? argumentType = typeHandle.TryResolve(_reader, AttributeType.ToRuntimeTypeInfo().
TypeContext
, ref exception);
166
RuntimeTypeInfo? argumentType = namedArgument.Type.TryResolve(_reader, AttributeType.ToRuntimeTypeInfo().
TypeContext
, ref exception);
System\Reflection\Runtime\EventInfos\NativeFormat\NativeFormatRuntimeEventInfo.cs (1)
143
return _event.Type.Resolve(_reader, ContextTypeInfo.
TypeContext
).ToType();
System\Reflection\Runtime\FieldInfos\NativeFormat\NativeFormatRuntimeFieldInfo.cs (3)
67
public sealed override Type[] GetOptionalCustomModifiers() => FieldTypeHandle.GetCustomModifiers(_reader, _contextTypeInfo.
TypeContext
, optional: true);
69
public sealed override Type[] GetRequiredCustomModifiers() => FieldTypeHandle.GetCustomModifiers(_reader, _contextTypeInfo.
TypeContext
, optional: false);
151
TypeContext typeContext = _contextTypeInfo.
TypeContext
;
System\Reflection\Runtime\MethodInfos\RuntimeMethodHelpers.cs (1)
33
TypeContext typeContext = contextMethod.DeclaringType.ToRuntimeTypeInfo().
TypeContext
;
System\Reflection\Runtime\PropertyInfos\RuntimePropertyInfo.cs (3)
121
public sealed override Type[] GetOptionalCustomModifiers() => PropertyTypeHandle.GetCustomModifiers(ContextTypeInfo.
TypeContext
, optional: true);
123
public sealed override Type[] GetRequiredCustomModifiers() => PropertyTypeHandle.GetCustomModifiers(ContextTypeInfo.
TypeContext
, optional: false);
163
TypeContext typeContext = ContextTypeInfo.
TypeContext
;
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeGenericParameterTypeInfoForMethods.cs (1)
63
TypeContext typeContext = this.InternalDeclaringType.
TypeContext
;
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeGenericParameterTypeInfoForTypes.cs (1)
46
return _declaringType.
TypeContext
;
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (2)
268
TypeContext typeContext = this.
TypeContext
;
760
baseType = baseTypeDefRefOrSpec.Resolve(this.
TypeContext
);