4 implementations of GetNamedArguments
Microsoft.CodeAnalysis (2)
CodeGen\PermissionSetAttribute.cs (1)
63public ImmutableArray<Cci.IMetadataNamedArgument> GetNamedArguments(EmitContext context)
Emit\EditAndContinue\DeletedCustomAttribute.cs (1)
34public ImmutableArray<IMetadataNamedArgument> GetNamedArguments(EmitContext context)
Microsoft.CodeAnalysis.CSharp (1)
Emitter\Model\AttributeDataAdapter.cs (1)
56ImmutableArray<Cci.IMetadataNamedArgument> Cci.ICustomAttribute.GetNamedArguments(EmitContext context)
Microsoft.CodeAnalysis.VisualBasic (1)
Emit\AttributeDataAdapter.vb (1)
38Private Function GetNamedArguments1(context As EmitContext) As ImmutableArray(Of Cci.IMetadataNamedArgument) Implements Cci.ICustomAttribute.GetNamedArguments
5 references to GetNamedArguments
Microsoft.CodeAnalysis (4)
CodeGen\PermissionSetAttribute.cs (1)
70var namedArgs = _sourceAttribute.GetNamedArguments(context);
Emit\EditAndContinue\DeletedCustomAttribute.cs (1)
36return OldDefinition.GetNamedArguments(context);
PEWriter\MetadataVisitor.cs (1)
61this.Visit(customAttribute.GetNamedArguments(Context));
PEWriter\MetadataWriter.cs (1)
3435foreach (IMetadataNamedArgument namedArgument in customAttribute.GetNamedArguments(Context))
Microsoft.CodeAnalysis.VisualBasic (1)
Emit\AttributeDataAdapter.vb (1)
38Private Function GetNamedArguments1(context As EmitContext) As ImmutableArray(Of Cci.IMetadataNamedArgument) Implements Cci.ICustomAttribute.GetNamedArguments