1 write to SymbolResult
System.CommandLine (1)
Parsing\ParseError.cs (1)
21
SymbolResult
= symbolResult;
11 references to SymbolResult
dotnet (2)
Commands\New\NewCommandParser.cs (1)
60
&& !parseResult.Errors.Any(error => error.
SymbolResult
== verbosityOptionResult))
Telemetry\TopLevelCommandNameAndOptionToLog.cs (1)
25
&& !parseResult.Errors.Any(error => error.
SymbolResult
== optionResult)
Microsoft.DotNet.Cli.CommandLine (2)
ResultNavigationExtensions.cs (2)
23
&& !parseResult.Errors.Any(e => e.
SymbolResult
== optionResult) // only return a value if this isn't a parsing error
52
&& !parseResult.Errors.Any(e => e.
SymbolResult
== optionResult) // only return a value if this isn't a parsing error
Microsoft.TemplateEngine.Cli (2)
Commands\Extensions.cs (2)
30
error = parseResult.Errors.FirstOrDefault(e => IsOptionResult(e.
SymbolResult
, option)
31
|| IsOptionResult(e.
SymbolResult
?.Parent, option));
System.CommandLine (5)
Parsing\ParseDiagramAction.cs (1)
59
if (parseResult.Errors.Any(e => e.
SymbolResult
== symbolResult))
Parsing\ParseOperation.cs (3)
431
.Where(e => e.
SymbolResult
!= _innermostCommandResult)
456
.Where(e => e.
SymbolResult
is OptionResult r && r.Option == option)
471
.Where(e => e.
SymbolResult
is CommandResult r && r.Command == command)
Parsing\SymbolResult.cs (1)
39
if (parseError.
SymbolResult
== this)