Describes an unknown token along with suggestions and optional diagnostics.
public readonly record struct UnknownTokenInfo(string Token, IReadOnlyList<string> Suggestions, string? InactiveMatchMessage, CommandTokenSpan? TokenSpan = default(CommandTokenSpan? )) : IEquatable<UnknownTokenInfo>
kind:method, kind:property, kind:ctor. Press Esc to clear.UnknownTokenInfo(String, IReadOnlyList<String>, String?, Nullable<CommandTokenSpan>)Describes an unknown token along with suggestions and optional diagnostics.InactiveMatchMessageA note if the token matches an inactive command/option, or null.SuggestionsSuggested corrections, if any.TokenThe unrecognized token.TokenSpanThe optional location of this token in the invocation token stream.