ArgumentParsedEventArgs Class

Provides data for the ArgumentParsed event.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public class ArgumentParsedEventArgs : CancelEventArgs
Inheritance
Object    EventArgs    CancelEventArgs    ArgumentParsedEventArgs

Remarks

If the event handler sets the Cancel property to , command line processing will stop immediately, and the Parse(String, Int32) method will return , even if all the required positional parameters have already been parsed.

Constructors

ArgumentParsedEventArgs Initializes a new instance of the ArgumentParsedEventArgs class.

Properties

Argument Gets the argument that was parsed.
CancelGets or sets a value indicating whether the event should be canceled.
(Inherited from CancelEventArgs)
OverrideCancelParsing Gets or sets a value that indicates whether or not the CancelParsing property should be ignored.

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)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

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