1 instantiation of CustomAttributeNamedArgument
System.Reflection.Metadata (1)
System\Reflection\Metadata\Ecma335\CustomAttributeDecoder.cs (1)
140arguments.Add(new CustomAttributeNamedArgument<TType>(name, kind, argument.Type, argument.Value));
25 references to CustomAttributeNamedArgument
ILCompiler.Compiler (8)
Compiler\Dataflow\AttributeDataFlow.cs (1)
68foreach (var namedArgument in arguments.NamedArguments)
Compiler\Dataflow\DiagnosticUtilities.cs (1)
191foreach (var namedArgument in attribute.NamedArguments)
Compiler\DependencyAnalysis\CustomAttributeBasedDependencyAlgorithm.cs (1)
170foreach (CustomAttributeNamedArgument<TypeDesc> decodedArgument in value.NamedArguments)
Compiler\Logging\UnconditionalSuppressMessageAttributeState.cs (1)
198foreach (var p in attribute.NamedArguments)
src\runtime\src\coreclr\tools\Common\Compiler\MethodExtensions.cs (3)
54foreach (var argument in decodedValue.NamedArguments) 71foreach (var argument in decodedValue.NamedArguments) 88foreach (var argument in decodedValue.NamedArguments)
src\runtime\src\coreclr\tools\Common\TypeSystem\Interop\UnmanagedCallingConventions.cs (1)
160foreach (var arg in attributeWithCallConvsArray.NamedArguments)
ILCompiler.ReadyToRun (4)
src\runtime\src\coreclr\tools\Common\Compiler\MethodExtensions.cs (3)
54foreach (var argument in decodedValue.NamedArguments) 71foreach (var argument in decodedValue.NamedArguments) 88foreach (var argument in decodedValue.NamedArguments)
src\runtime\src\coreclr\tools\Common\TypeSystem\Interop\UnmanagedCallingConventions.cs (1)
160foreach (var arg in attributeWithCallConvsArray.NamedArguments)
ILCompiler.TypeSystem (4)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaMethod.cs (1)
543foreach (CustomAttributeNamedArgument<TypeDesc> namedArg in decoded.NamedArguments)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaModule.cs (1)
811foreach (var arg in dec.NamedArguments)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\MetadataExtensions.cs (1)
256foreach (var namedArgument in customAttributeValue.Value.NamedArguments)
src\runtime\src\coreclr\tools\Common\TypeSystem\IL\UnsafeAccessors.cs (1)
188foreach (var argument in decodedValue.NamedArguments)
System.Reflection.Metadata (6)
System\Reflection\Metadata\Ecma335\CustomAttributeDecoder.cs (4)
98ImmutableArray<CustomAttributeNamedArgument<TType>> namedArguments = DecodeNamedArguments(ref valueReader); 120private ImmutableArray<CustomAttributeNamedArgument<TType>> DecodeNamedArguments(ref BlobReader valueReader) 125return ImmutableArray<CustomAttributeNamedArgument<TType>>.Empty; 128var arguments = ImmutableArray.CreateBuilder<CustomAttributeNamedArgument<TType>>(count);
System\Reflection\Metadata\Signatures\CustomAttributeValue.cs (2)
11public ImmutableArray<CustomAttributeNamedArgument<TType>> NamedArguments { get; } 13public CustomAttributeValue(ImmutableArray<CustomAttributeTypedArgument<TType>> fixedArguments, ImmutableArray<CustomAttributeNamedArgument<TType>> namedArguments)
System.Reflection.MetadataLoadContext (3)
System\Reflection\TypeLoading\CustomAttributes\Ecma\EcmaCustomAttributeData.cs (1)
17private IList<CustomAttributeNamedArgument<RoType>>? _lazyNamedArguments;
System\Reflection\TypeLoading\CustomAttributes\Ecma\EcmaCustomAttributeHelpers.cs (2)
137public static IList<CustomAttributeNamedArgument> ToApiForm(this IList<CustomAttributeNamedArgument<RoType>> cangs, Type attributeType) 152public static CustomAttributeNamedArgument ToApiForm(this CustomAttributeNamedArgument<RoType> cang, Type attributeType)