2 instantiations of PropertyHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
721handle = new PropertyHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7470return new PropertyHandle(this);
17 references to PropertyHandle
System.Private.CoreLib (17)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
717public static uint Read(this NativeReader reader, uint offset, out PropertyHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
4248private readonly PropertyHandle _handle; 4250internal Property(MetadataReader reader, PropertyHandle handle) 4264public PropertyHandle Handle => _handle; 4307if (obj is PropertyHandle) 4308return _value == ((PropertyHandle)obj)._value; 4315public bool Equals(PropertyHandle handle) => _value == handle._value; 4321public static implicit operator Handle(PropertyHandle handle) 6215private PropertyHandle _current; 6221_current = default(PropertyHandle); 6224public PropertyHandle Current 7468public PropertyHandle ToPropertyHandle(MetadataReader reader) 7858public Property GetProperty(PropertyHandle handle)
System\Reflection\Runtime\General\Dispensers.NativeFormat.cs (1)
123internal static RuntimePropertyInfo GetRuntimePropertyInfo(PropertyHandle propertyHandle, NativeFormatRuntimeNamedTypeInfo definingTypeInfo, RuntimeTypeInfo contextTypeInfo, RuntimeTypeInfo reflectedType)
System\Reflection\Runtime\PropertyInfos\NativeFormat\NativeFormatRuntimePropertyInfo.cs (2)
53private NativeFormatRuntimePropertyInfo(PropertyHandle propertyHandle, NativeFormatRuntimeNamedTypeInfo definingTypeInfo, RuntimeTypeInfo contextTypeInfo, RuntimeTypeInfo reflectedType) : 198private readonly PropertyHandle _propertyHandle;
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeTypeInfo.CoreGetDeclared.cs (1)
79foreach (PropertyHandle propertyHandle in DeclaredPropertyHandles)