8 references to GetCustomAttributes
ILCompiler.Compiler (4)
Compiler\Dataflow\FlowAnnotations.cs (2)
446returnAnnotation = GetMemberTypesForDynamicallyAccessedMembersAttribute(reader, parameter.GetCustomAttributes()); 455DynamicallyAccessedMemberTypes pa = GetMemberTypesForDynamicallyAccessedMembersAttribute(reader, parameter.GetCustomAttributes());
Compiler\DependencyAnalysis\CustomAttributeBasedDependencyAlgorithm.cs (1)
45AddDependenciesDueToCustomAttributes(ref dependencies, parameterCondition, factory, method.Module, parameter.GetCustomAttributes(), method);
Compiler\DependencyAnalysis\ReflectionInvokeSupportDependencyAlgorithm.cs (1)
46if (!reader.GetCustomAttributeHandle(param.GetCustomAttributes(), "System", "ParamArrayAttribute").IsNil)
ILCompiler.MetadataTransform (1)
ILCompiler\Metadata\Transform.Method.cs (1)
104Ecma.CustomAttributeHandleCollection paramAttributes = param.GetCustomAttributes();
ILCompiler.TypeSystem (1)
src\runtime\src\coreclr\tools\Common\TypeSystem\IL\UnsafeAccessors.cs (1)
671foreach (CustomAttributeHandle customAttributeHandle in parameter.GetCustomAttributes())
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Parameters\Ecma\EcmaFatMethodParameter.cs (2)
38protected sealed override IEnumerable<CustomAttributeData> GetTrueCustomAttributes() => Parameter.GetCustomAttributes().ToTrueCustomAttributes(GetEcmaModule()); 62return Parameter.GetCustomAttributes().TryFindRawDefaultValueFromCustomAttributes(GetEcmaModule(), out rawDefaultValue);