1 write to IdentifierToken
System.CommandLine (1)
Parsing\CommandResult.cs (1)
22
IdentifierToken
= token ?? throw new ArgumentNullException(nameof(token));
7 references to IdentifierToken
aspire (3)
Commands\ParseResultHelper.cs (3)
139
if (ReferenceEquals(token, parseResult.RootCommandResult.
IdentifierToken
))
175
ownedTokens.Add(commandResult.
IdentifierToken
);
213
excludedTokens.Add(commandResult.
IdentifierToken
);
Microsoft.TemplateEngine.Cli (1)
Commands\BaseCommand.cs (1)
121
string usedCommandAlias = args.ParseResult.CommandResult.
IdentifierToken
.Value;
System.CommandLine (3)
LocalizationResources.cs (1)
59
commandResult.
IdentifierToken
.Value)
Parsing\CommandResult.cs (1)
41
public override string ToString() => $"{nameof(CommandResult)}: {
IdentifierToken
.Value} {string.Join(" ", Tokens.Select(t => t.Value))}";
Parsing\ParseDiagramAction.cs (1)
146
builder.Append(((CommandResult)symbolResult).
IdentifierToken
.Value);