ParseOptionsError Property
Gets or sets the
TextWriter used to print error information if argument
parsing fails.
Namespace: Ookii.CommandLineAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
public TextWriter? Error { get; set; }
Public Property Error As TextWriter
Get
Set
Dim instance As ParseOptions
Dim value As TextWriter
value = instance.Error
instance.Error = value
public:
property TextWriter^ Error {
TextWriter^ get ();
void set (TextWriter^ value);
}
Property Value
TextWriter
The
TextWriter used to print error information, or
to print to a
LineWrappingTextWriter for the standard error stream
(
Error). The default value is
.
If argument parsing is successful, nothing will be written.