Click or drag to resize
ParserSettings Constructor (Boolean, Boolean, Boolean, TextWriter)
Initializes a new instance of the ParserSettings class, setting case comparison, mutually exclusive behavior and help output option.

Namespace: X3Platform.CommandLine
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public ParserSettings(
	bool caseSensitive,
	bool mutuallyExclusive,
	bool ignoreUnknownArguments,
	TextWriter helpWriter
)

Parameters

caseSensitive
Type: SystemBoolean
If set to true, parsing will be case sensitive.
mutuallyExclusive
Type: SystemBoolean
If set to true, enable mutually exclusive behavior.
ignoreUnknownArguments
Type: SystemBoolean
If set to true, allow the parser to skip unknown argument, otherwise return a parse failure
helpWriter
Type: System.IOTextWriter
Any instance derived from TextWriter, default Error. Setting this argument to null, will disable help screen.
See Also