2 implementations of GetNamedArguments
Microsoft.CodeAnalysis (1)
CodeGen\PermissionSetAttribute.cs (1)
63public ImmutableArray<Cci.IMetadataNamedArgument> GetNamedArguments(EmitContext context)
Microsoft.CodeAnalysis.CSharp (1)
Emitter\Model\AttributeDataAdapter.cs (1)
56ImmutableArray<Cci.IMetadataNamedArgument> Cci.ICustomAttribute.GetNamedArguments(EmitContext context)
3 references to GetNamedArguments
Microsoft.CodeAnalysis (3)
CodeGen\PermissionSetAttribute.cs (1)
70var namedArgs = _sourceAttribute.GetNamedArguments(context);
PEWriter\MetadataVisitor.cs (1)
62this.Visit(customAttribute.GetNamedArguments(Context));
PEWriter\MetadataWriter.cs (1)
3497foreach (IMetadataNamedArgument namedArgument in customAttribute.GetNamedArguments(Context))