Base:
property
ReflectedType
System.Reflection.MemberInfo.ReflectedType
9 overrides of ReflectedType
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
69public override Type? ReflectedType => _genericType.ReflectedType;
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
98public override Type? ReflectedType => throw new NotSupportedException(SR.NotSupported_ModifiedType);
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
84public sealed override Type ReflectedType => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\libraries\System.Private.CoreLib\src\System\RuntimeType.cs (1)
26public override Type? ReflectedType => DeclaringType;
src\System\Reflection\Emit\RuntimeEnumBuilder.cs (1)
287public override Type? ReflectedType => m_typeBuilder.ReflectedType;
src\System\Reflection\Emit\RuntimeGenericTypeParameterBuilder.cs (1)
48public override Type? ReflectedType => m_type.ReflectedType;
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
613public override Type? ReflectedType => m_DeclaringType;
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
140public override Type? ReflectedType
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
148public sealed override Type? ReflectedType => DeclaringType;
3 references to ReflectedType
Microsoft.ML.CodeGenerator (1)
CodeGenerator\CSharp\TrainerGeneratorBase.cs (1)
103value = $"{type.ReflectedType.Name}.{type.Name}.{kv.Value.ToString()}";
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
69public override Type? ReflectedType => _genericType.ReflectedType;
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
142get { return _typeInfo.ReflectedType; }