CommandLineArgumentException Class

The exception that is thrown when command line parsing failed due to an invalid command line.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
[SerializableAttribute]
public class CommandLineArgumentException : Exception
Inheritance
Object    Exception    CommandLineArgumentException

Remarks

This exception indicates that the command line passed to the CommandLineParserTParse(ReadOnlyMemoryString) method, or another parsing method, was invalid for the arguments defined by the CommandLineParser instance.

Use the Category property to determine the exact cause of the exception.

Constructors

CommandLineArgumentException Initializes a new instance of the CommandLineArgumentException class.
CommandLineArgumentException(String) Initializes a new instance of the CommandLineArgumentException class with a specified error message.
CommandLineArgumentException(SerializationInfo, StreamingContext) Initializes a new instance of the CommandLineArgumentException class with serialized data.
Obsolete.
CommandLineArgumentException(String, CommandLineArgumentErrorCategory) Initializes a new instance of the CommandLineArgumentException class with a specified error message and category.
CommandLineArgumentException(String, Exception) Initializes a new instance of the CommandLineArgumentException class with a specified error message and a reference to the inner Exception that is the cause of this CommandLineArgumentException.
CommandLineArgumentException(String, CommandLineArgumentErrorCategory, Exception) Initializes a new instance of the CommandLineArgumentException class with a specified error message, category, and a reference to the inner Exception that is the cause of this CommandLineArgumentException.
CommandLineArgumentException(String, String, CommandLineArgumentErrorCategory) Initializes a new instance of the CommandLineArgumentException class with a specified error message, argument name and category.
CommandLineArgumentException(String, String, CommandLineArgumentErrorCategory, Exception) Initializes a new instance of the CommandLineArgumentException class with a specified error message, argument name, category, and a reference to the inner Exception that is the cause of this CommandLineArgumentException.

Properties

ArgumentName Gets the name of the argument that was invalid.
Category Gets the category of this error.
DataGets a collection of key/value pairs that provide additional user-defined information about the exception.
(Inherited from Exception)
HelpLinkGets or sets a link to the help file associated with this exception.
(Inherited from Exception)
HResultGets or sets HRESULT, a coded numerical value that is assigned to a specific exception.
(Inherited from Exception)
InnerExceptionGets the Exception instance that caused the current exception.
(Inherited from Exception)
MessageGets a message that describes the current exception.
(Inherited from Exception)
SourceGets or sets the name of the application or the object that causes the error.
(Inherited from Exception)
StackTraceGets a string representation of the immediate frames on the call stack.
(Inherited from Exception)
TargetSiteGets the method that throws the current exception.
(Inherited from Exception)

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetBaseExceptionWhen overridden in a derived class, returns the Exception that is the root cause of one or more subsequent exceptions.
(Inherited from Exception)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetObjectData Sets the SerializationInfo object with the argument name and additional exception information.
(Overrides Exception.GetObjectData(SerializationInfo, StreamingContext))
Obsolete.
GetTypeGets the runtime type of the current instance.
(Inherited from Exception)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringCreates and returns a string representation of the current exception.
(Inherited from Exception)

Events

SerializeObjectStateOccurs when an exception is serialized to create an exception state object that contains serialized data about the exception.
(Inherited from Exception)
Obsolete.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also