1 instantiation of PropertyPolicies
System.Private.CoreLib (1)
System\Reflection\Runtime\BindingFlagSupport\PropertyPolicies.cs (1)
16
public static readonly PropertyPolicies Instance = new
PropertyPolicies
();
7 references to PropertyPolicies
System.Private.CoreLib (7)
Internal\Reflection\Augments\ReflectionAugments.cs (1)
207
return p.GetImplicitlyOverriddenBaseClassMember(
PropertyPolicies
.Instance);
System\Reflection\Runtime\BindingFlagSupport\PropertyPolicies.cs (1)
16
public static readonly
PropertyPolicies
Instance = new PropertyPolicies();
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.BindingFlags.cs (3)
99
public PropertyInfo[] GetProperties(BindingFlags bindingAttr) => Query<PropertyInfo>(
PropertyPolicies
.Instance, bindingAttr).ToArray();
111
return Query<PropertyInfo>(
PropertyPolicies
.Instance, name, bindingAttr).Disambiguate();
116
QueryResult<PropertyInfo> queryResult = Query<PropertyInfo>(
PropertyPolicies
.Instance, name, bindingAttr);
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.GetMember.cs (2)
56
if ((results = QuerySpecificMemberTypeIfRequested(
PropertyPolicies
.Instance, type, optionalName, bindingAttr, predicate, MemberTypes.Property, out properties)) != null)
141
MemberTypes.Property => QueryMemberWithSameMetadataDefinitionAs(
PropertyPolicies
.Instance, member),