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