17 references to NamedArguments
Microsoft.CodeAnalysis (8)
Symbols\Attributes\CommonAttributeDataComparer.cs (3)
35attr1.NamedArguments.SequenceEqual(attr2.NamedArguments); 47hash = Hash.Combine(GetHashCodeForNamedArguments(attr.NamedArguments), hash);
Symbols\Attributes\MarshalAsAttributeDecoder.cs (5)
126foreach (var namedArg in arguments.Attribute.NamedArguments) 182foreach (var namedArg in arguments.Attribute.NamedArguments) 217foreach (var namedArg in arguments.Attribute.NamedArguments) 295foreach (var namedArg in arguments.Attribute.NamedArguments) 363foreach (var namedArg in arguments.Attribute.NamedArguments)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (2)
AttributeGenerator.cs (2)
87if (attribute.ConstructorArguments.Length == 0 && attribute.NamedArguments.Length == 0) 94arguments.AddRange(attribute.NamedArguments.Select(kvp =>
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
AttributeGenerator.cs (2)
87if (attribute.ConstructorArguments.Length == 0 && attribute.NamedArguments.Length == 0) 94arguments.AddRange(attribute.NamedArguments.Select(kvp =>
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
4420match.NamedArguments.SequenceEqual(attribute.NamedArguments, NamedArgumentComparer.Instance))
Microsoft.CodeAnalysis.VisualBasic.Workspaces (2)
CodeGeneration\AttributeGenerator.vb (2)
42If attribute.ConstructorArguments.Length = 0 AndAlso attribute.NamedArguments.Length = 0 Then 51arguments.AddRange(attribute.NamedArguments.Select(
Microsoft.CodeAnalysis.Workspaces (1)
Editing\SyntaxGenerator.cs (1)
1030.Concat(attribute.NamedArguments.Select(n => this.AttributeArgument(n.Key, this.TypedConstantExpression(n.Value))))