2 instantiations of CustomAttributeHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
559handle = new CustomAttributeHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7380return new CustomAttributeHandle(this);
22 references to CustomAttributeHandle
System.Private.CoreLib (20)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
555public static uint Read(this NativeReader reader, uint offset, out CustomAttributeHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
2611private readonly CustomAttributeHandle _handle; 2613internal CustomAttribute(MetadataReader reader, CustomAttributeHandle handle) 2624public CustomAttributeHandle Handle => _handle; 2659if (obj is CustomAttributeHandle) 2660return _value == ((CustomAttributeHandle)obj)._value; 2667public bool Equals(CustomAttributeHandle handle) => _value == handle._value; 2673public static implicit operator Handle(CustomAttributeHandle handle) 5663private CustomAttributeHandle _current; 5669_current = default(CustomAttributeHandle); 5672public CustomAttributeHandle Current 7378public CustomAttributeHandle ToCustomAttributeHandle(MetadataReader reader) 7768public CustomAttribute GetCustomAttribute(CustomAttributeHandle handle)
System\Reflection\Runtime\CustomAttributes\NativeFormat\NativeFormatCustomAttributeData.cs (1)
30internal NativeFormatCustomAttributeData(MetadataReader reader, CustomAttributeHandle customAttributeHandle)
System\Reflection\Runtime\General\Dispensers.NativeFormat.cs (2)
182foreach (CustomAttributeHandle customAttributeHandle in customAttributeHandles) 186private static NativeFormatCustomAttributeData GetCustomAttributeData(MetadataReader reader, CustomAttributeHandle customAttributeHandle)
System\Reflection\Runtime\General\MetadataReaderExtensions.NativeFormat.cs (1)
478public static bool IsCustomAttributeOfType(this CustomAttributeHandle customAttributeHandle,
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeNamedTypeInfo.cs (3)
51foreach (CustomAttributeHandle cah in _typeDefinition.CustomAttributes) 65foreach (CustomAttributeHandle cah in _typeDefinition.CustomAttributes) 249foreach (CustomAttributeHandle cah in _typeDefinition.CustomAttributes)
System.Private.StackTraceMetadata (2)
Internal\StackTraceMetadata\StackTraceMetadata.cs (2)
92foreach (CustomAttributeHandle cah in reader.GetTypeDefinition(typeHandle).CustomAttributes) 101foreach (CustomAttributeHandle cah in reader.GetMethod(methodHandle).CustomAttributes)