3 overrides of IsNamed
Microsoft.CodeAnalysis.VisualBasic (3)
Syntax\ArgumentSyntax.vb (3)
39Public NotOverridable Overrides ReadOnly Property IsNamed As Boolean 54Public NotOverridable Overrides ReadOnly Property IsNamed As Boolean 69Public NotOverridable Overrides ReadOnly Property IsNamed As Boolean
23 references to IsNamed
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Attributes\AttributeData.vb (1)
94attributeSyntax.ArgumentList.Arguments.Where(Function(arg) arg.Kind = SyntaxKind.SimpleArgument AndAlso Not arg.IsNamed).Count,
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (4)
ArgumentSyntaxExtensions.vb (1)
47If argument.IsNamed Then
SpeculationAnalyzer.vb (1)
475Return argument.IsNamed
VisualBasicSyntaxFacts.vb (2)
611Return argument IsNot Nothing AndAlso Not argument.IsNamed AndAlso Not argument.IsOmitted 1150If TryCast(argument, ArgumentSyntax)?.IsNamed Then
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (2)
SyntaxTokenExtensions.vb (1)
138If n.IsNode AndAlso DirectCast(n.AsNode(), ArgumentSyntax).IsNamed Then
VisualBasicTypeInferenceService.TypeInferrer.vb (1)
319If argumentOpt IsNot Nothing AndAlso argumentOpt.IsNamed Then
Microsoft.CodeAnalysis.VisualBasic.Features (4)
ChangeSignature\UnifiedArgumentSyntax.vb (3)
31Return _argument.IsNamed 40Return If(_argument.IsNamed, 46Return If(_argument.IsNamed,
ChangeSignature\VisualBasicChangeSignatureService.vb (1)
550Dim isNamed = argumentList.Arguments.LastOrDefault()?.IsNamed
Microsoft.CodeAnalysis.VisualBasic.Workspaces (7)
ArgumentSyntaxExtensions.vb (1)
47If argument.IsNamed Then
Extensions\SemanticModelExtensions.vb (1)
96If argument.IsNamed Then
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ContextQuery\SyntaxTokenExtensions.vb\SyntaxTokenExtensions.vb (1)
138If n.IsNode AndAlso DirectCast(n.AsNode(), ArgumentSyntax).IsNamed Then
SpeculationAnalyzer.vb (1)
475Return argument.IsNamed
VisualBasicSyntaxFacts.vb (2)
611Return argument IsNot Nothing AndAlso Not argument.IsNamed AndAlso Not argument.IsOmitted 1150If TryCast(argument, ArgumentSyntax)?.IsNamed Then
VisualBasicTypeInferenceService.TypeInferrer.vb (1)
319If argumentOpt IsNot Nothing AndAlso argumentOpt.IsNamed Then
Microsoft.VisualStudio.LanguageServices.VisualBasic (5)
CodeModel\VisualBasicCodeModelService.CodeModelEventCollector.vb (3)
251oldArgument.IsNamed <> newArgument.IsNamed _ 255ElseIf oldArgument.IsNamed Then
CodeModel\VisualBasicCodeModelService.NodeLocator.vb (2)
1505If Not argument.IsNamed Then 1540If Not argument.IsNamed Then