ParseResult.UnparsedTokens Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the list of tokens used on the command line that were ignored by the parser.
public:
property System::Collections::Generic::IReadOnlyList<System::String ^> ^ UnparsedTokens { System::Collections::Generic::IReadOnlyList<System::String ^> ^ get(); };
public System.Collections.Generic.IReadOnlyList<string> UnparsedTokens { get; }
member this.UnparsedTokens : System.Collections.Generic.IReadOnlyList<string>
Public ReadOnly Property UnparsedTokens As IReadOnlyList(Of String)
Property Value
Remarks
This list will contain all of the tokens following the first occurrence of a --
token if EnableLegacyDoubleDashBehavior is set to true
.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.