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));
9 references to CustomAttributeNamedArgument
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 volatile 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)