1 instantiation of RuntimePropertyInfo
System.Private.CoreLib (1)
src\System\RuntimeType.CoreCLR.cs (1)
1319
new
RuntimePropertyInfo
(
27 references to RuntimePropertyInfo
System.Private.CoreLib (27)
src\System\Reflection\RuntimeCustomAttributeData.cs (1)
62
internal static IList<CustomAttributeData> GetCustomAttributesInternal(
RuntimePropertyInfo
target)
src\System\Reflection\RuntimeParameterInfo.cs (3)
150
internal RuntimeParameterInfo(RuntimeParameterInfo accessor,
RuntimePropertyInfo
property)
421
RuntimePropertyInfo
? property = Member as
RuntimePropertyInfo
;
src\System\Reflection\RuntimePropertyInfo.cs (4)
59
o is
RuntimePropertyInfo
m &&
80
internal bool EqualsSig(
RuntimePropertyInfo
target)
173
public sealed override bool HasSameMetadataDefinitionAs(MemberInfo other) => HasSameMetadataDefinitionAsCore<
RuntimePropertyInfo
>(other);
187
(MetadataUpdater.IsSupported && obj is
RuntimePropertyInfo
rpi &&
src\System\RuntimeType.CoreCLR.cs (19)
1229
private
RuntimePropertyInfo
[] PopulateProperties(Filter filter)
1239
ListBuilder<
RuntimePropertyInfo
> list = default;
1247
Dictionary<string, List<
RuntimePropertyInfo
>>? csPropertyInfos = filter.CaseSensitive() ? null :
1248
new Dictionary<string, List<
RuntimePropertyInfo
>>();
1282
Dictionary<string, List<
RuntimePropertyInfo
>>? csPropertyInfos,
1285
ref ListBuilder<
RuntimePropertyInfo
> list)
1318
RuntimePropertyInfo
propertyInfo =
1366
if (!csPropertyInfos.TryGetValue(name, out List<
RuntimePropertyInfo
>? cache))
1368
cache = new List<
RuntimePropertyInfo
>(1);
1452
private MemberInfoCache<
RuntimePropertyInfo
>? m_propertyInfoCache;
1731
internal
RuntimePropertyInfo
[] GetPropertyList(MemberListType listType, string? name)
1986
private static
RuntimePropertyInfo
GetPropertyInfo(RuntimeType reflectedType, int tkProperty)
1988
RuntimePropertyInfo
property;
1989
RuntimePropertyInfo
[] candidates =
2566
RuntimePropertyInfo
[] cache = Cache.GetPropertyList(listType, name);
2573
RuntimePropertyInfo
propertyInfo = cache[i];
3187
private static
RuntimePropertyInfo
? GetPropertyWithSameMetadataDefinitionAs(RuntimeType runtimeType, MemberInfo property)
3189
RuntimePropertyInfo
[] cache = runtimeType.Cache.GetPropertyList(MemberListType.CaseSensitive, property.Name);
3193
RuntimePropertyInfo
candidate = cache[i];