1 instantiation of CustomAttributeNamedArgument
System.Reflection.Metadata (1)
System\Reflection\Metadata\Ecma335\CustomAttributeDecoder.cs (1)
140
arguments.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)
98
ImmutableArray<
CustomAttributeNamedArgument
<TType>> namedArguments = DecodeNamedArguments(ref valueReader);
120
private ImmutableArray<
CustomAttributeNamedArgument
<TType>> DecodeNamedArguments(ref BlobReader valueReader)
125
return ImmutableArray<
CustomAttributeNamedArgument
<TType>>.Empty;
128
var arguments = ImmutableArray.CreateBuilder<
CustomAttributeNamedArgument
<TType>>(count);
System\Reflection\Metadata\Signatures\CustomAttributeValue.cs (2)
11
public ImmutableArray<
CustomAttributeNamedArgument
<TType>> NamedArguments { get; }
13
public CustomAttributeValue(ImmutableArray<CustomAttributeTypedArgument<TType>> fixedArguments, ImmutableArray<
CustomAttributeNamedArgument
<TType>> namedArguments)
System.Reflection.MetadataLoadContext (3)
System\Reflection\TypeLoading\CustomAttributes\Ecma\EcmaCustomAttributeData.cs (1)
17
private volatile IList<
CustomAttributeNamedArgument
<RoType>>? _lazyNamedArguments;
System\Reflection\TypeLoading\CustomAttributes\Ecma\EcmaCustomAttributeHelpers.cs (2)
137
public static IList<CustomAttributeNamedArgument> ToApiForm(this IList<
CustomAttributeNamedArgument
<RoType>> cangs, Type attributeType)
152
public static CustomAttributeNamedArgument ToApiForm(this
CustomAttributeNamedArgument
<RoType> cang, Type attributeType)