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