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