2 overrides of GetCustomAttributeHandles
System.Private.CoreLib (2)
System\Reflection\Runtime\ParameterInfos\NativeFormat\NativeFormatMethodParameterInfo.cs (1)
64
internal sealed override CustomAttributeHandleCollection
GetCustomAttributeHandles
() => _parameter.CustomAttributes;
System\Reflection\Runtime\ParameterInfos\RuntimePropertyIndexParameterInfo.cs (1)
36
internal sealed override CustomAttributeHandleCollection
GetCustomAttributeHandles
() => _backingParameter.GetCustomAttributeHandles();
4 references to GetCustomAttributeHandles
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\RuntimeCustomAttributeData.cs (3)
141
IList<CustomAttributeData> cad = GetCustomAttributes(target.GetMetadataReader(), target.
GetCustomAttributeHandles
());
1056
return IsCustomAttributeDefined(parameter.GetMetadataReader(), parameter.
GetCustomAttributeHandles
(), caType);
1258
object[] attributes = GetCustomAttributes(parameter.GetMetadataReader(), parameter.
GetCustomAttributeHandles
(), pcas.Count, caType);
System\Reflection\Runtime\ParameterInfos\RuntimePropertyIndexParameterInfo.cs (1)
36
internal sealed override CustomAttributeHandleCollection GetCustomAttributeHandles() => _backingParameter.
GetCustomAttributeHandles
();