2 implementations of IsNamed
Microsoft.CodeAnalysis.CSharp.Features (1)
ChangeSignature\UnifiedArgumentSyntax.cs (1)
80public bool IsNamed
Microsoft.CodeAnalysis.VisualBasic.Features (1)
ChangeSignature\UnifiedArgumentSyntax.vb (1)
29Private ReadOnly Property IsNamed As Boolean Implements IUnifiedArgumentSyntax.IsNamed
7 references to IsNamed
Microsoft.CodeAnalysis.Features (6)
ChangeSignature\AbstractChangeSignatureService.cs (6)
517if ((seenNamedArgument || actualIndex != expectedIndex) && !argument.IsNamed) 532seenNamedArgument |= argument.IsNamed; 540if (seenNamedArgument && !paramsArrayArgument.IsNamed) 555if (!arguments[i].IsNamed && removedParams && i >= updatedSignature.UpdatedConfiguration.ToListOfParameters().Length) 560if (!arguments[i].IsNamed || updatedSignature.UpdatedConfiguration.ToListOfParameters().Any(static (p, arg) => p.Name == arg.arguments[arg.i].GetName(), (arguments, i))) 605if (argument.IsNamed)
Microsoft.CodeAnalysis.VisualBasic.Features (1)
ChangeSignature\UnifiedArgumentSyntax.vb (1)
29Private ReadOnly Property IsNamed As Boolean Implements IUnifiedArgumentSyntax.IsNamed