1 instantiation of PropertyPolicies
System.Private.CoreLib (1)
System\Reflection\Runtime\BindingFlagSupport\PropertyPolicies.cs (1)
15
public static readonly PropertyPolicies Instance = new
PropertyPolicies
();
6 references to PropertyPolicies
System.Private.CoreLib (6)
System\Reflection\Runtime\BindingFlagSupport\PropertyPolicies.cs (1)
15
public static readonly
PropertyPolicies
Instance = new PropertyPolicies();
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.BindingFlags.cs (3)
98
public PropertyInfo[] GetProperties(BindingFlags bindingAttr) => Query<PropertyInfo>(
PropertyPolicies
.Instance, bindingAttr).ToArray();
110
return Query<PropertyInfo>(
PropertyPolicies
.Instance, name, bindingAttr).Disambiguate();
115
QueryResult<PropertyInfo> queryResult = Query<PropertyInfo>(
PropertyPolicies
.Instance, name, bindingAttr);
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.GetMember.cs (2)
57
if ((results = QuerySpecificMemberTypeIfRequested(
PropertyPolicies
.Instance, type, optionalName, bindingAttr, predicate, MemberTypes.Property, out properties)) != null)
162
MemberTypes.Property => QueryMemberWithSameMetadataDefinitionAs(
PropertyPolicies
.Instance, member),