ParseResult Structure

Indicates the result of the last call to the Parse(String, Int32) method.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public readonly struct ParseResult
Inheritance
Object    ValueType    ParseResult

Properties

ArgumentName Gets the name of the argument that caused the error or cancellation.
LastException Gets the exception that occurred during the last call to the Parse(String, Int32) method, if any.
Status Gets the status of the last call to the Parse(String, Int32) method.
Success Gets a ParseResult instance that represents successful parsing.

Methods

EqualsIndicates whether this instance and a specified object are equal.
(Inherited from ValueType)
FromCanceled Creates a ParseResult instance that represents canceled parsing.
FromException Creates a ParseResult instance that represents a parsing error.
GetHashCodeReturns the hash code for this instance.
(Inherited from ValueType)
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToStringReturns the fully qualified type name of this instance.
(Inherited from ValueType)

See Also