Class ParseResult
The result of a parsing operation.
Inheritance
System.Object
ParseResult
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Petabridge.Cmd
Assembly: cs.temp.dll.dll
Syntax
public sealed class ParseResult
Constructors
ParseResult(Boolean, IEnumerable<ValidationError>, Command)
Declaration
public ParseResult(bool success, IEnumerable<ValidationError> parseErrors, Command result)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | success | |
IEnumerable<ValidationError> | parseErrors | |
Command | result |
Properties
ParseErrors
Declaration
public IEnumerable<ValidationError> ParseErrors { get; }
Property Value
Type | Description |
---|---|
IEnumerable<ValidationError> |
Result
Declaration
public Command Result { get; }
Property Value
Type | Description |
---|---|
Command |
Success
Declaration
public bool Success { get; }
Property Value
Type | Description |
---|---|
System.Boolean |