7 overrides of GetPropertiesCore
System.Reflection.MetadataLoadContext (7)
System\Reflection\TypeLoading\Types\RoConstructedGenericType.cs (1)
143
internal sealed override IEnumerable<PropertyInfo>
GetPropertiesCore
(NameFilter? filter, Type reflectedType) => _genericTypeDefinition.SpecializeProperties(filter, reflectedType, this);
System\Reflection\TypeLoading\Types\RoDefinitionType.cs (1)
237
internal sealed override IEnumerable<PropertyInfo>
GetPropertiesCore
(NameFilter? filter, Type reflectedType) => SpecializeProperties(filter, reflectedType, this);
System\Reflection\TypeLoading\Types\RoFunctionPointerType.cs (1)
201
internal sealed override IEnumerable<PropertyInfo>
GetPropertiesCore
(NameFilter? filter, Type reflectedType) => Array.Empty<PropertyInfo>();
System\Reflection\TypeLoading\Types\RoGenericParameterType.cs (1)
92
internal sealed override IEnumerable<PropertyInfo>
GetPropertiesCore
(NameFilter? filter, Type reflectedType) => Array.Empty<PropertyInfo>();
System\Reflection\TypeLoading\Types\RoHasElementType.cs (1)
84
internal sealed override IEnumerable<PropertyInfo>
GetPropertiesCore
(NameFilter? filter, Type reflectedType) => Array.Empty<PropertyInfo>();
System\Reflection\TypeLoading\Types\RoModifiedType.cs (1)
196
internal override IEnumerable<PropertyInfo>
GetPropertiesCore
(NameFilter? filter, Type reflectedType) => throw new NotSupportedException(SR.NotSupported_ModifiedType);
System\Reflection\TypeLoading\Types\RoStubType.cs (1)
81
internal sealed override IEnumerable<PropertyInfo>
GetPropertiesCore
(NameFilter? filter, Type reflectedType) => throw null!;
1 reference to GetPropertiesCore
System.Reflection.MetadataLoadContext (1)
System\Reflection\Runtime\BindingFlagSupport\PropertyPolicies.cs (1)
21
return type.
GetPropertiesCore
(filter, reflectedType);