8 overrides of Terminating
dotnet (7)
Commands\Workload\WorkloadCommandParser.cs (2)
56
public override bool
Terminating
=> true;
68
public override bool
Terminating
=> true;
ParserOptionActions.cs (5)
30
public override bool
Terminating
=> false;
90
public override bool
Terminating
=> true;
108
public override bool
Terminating
=> true;
127
public override bool
Terminating
=> true;
171
public override bool
Terminating
=> true;
System.CommandLine (1)
EnvironmentVariablesDirective.cs (1)
37
public override bool
Terminating
=> false;
6 references to Terminating
dotnet (2)
Extensions\ParseResultExtensions.cs (1)
198
if (parseResult.Action is InvocableOptionAction {
Terminating
: true } optionAction)
Program.cs (1)
155
if (!(parseResult.Action is InvocableOptionAction {
Terminating
: true }))
System.CommandLine (4)
Invocation\CommandLineAction.cs (1)
23
/// <remarks>This property is ignored when <see cref="
Terminating
"/> is set to <see langword="false"/>.</remarks>
Parsing\ParseOperation.cs (3)
222
if (option.Action.
Terminating
)
359
if (directive.Action.
Terminating
)
386
if (kvp is { Key: Option { Action: {
Terminating
: false } action }, Value: OptionResult { Implicit: true } } &&