IParseResult interface

The result of a parse attempt.

public interface IParseResult

Members

name description
NextPosition { get; } The text position at the end of the parsed value (or at the point of failure).
Success { get; } True if the parsing was successful.
Value { get; } The parsed object instance. Throws ParseException if the parsing was not successful.

See Also