ParserErrorResults Class
Provides access to the built-in IParserErrorResult instances, that indicate a result provided by a ParserErrorCallback.
public static class ParserErrorResults
- Inheritance:
- Object Object
Properties
Continue
Gets the IParserErrorResult that indicates to potentially report errors but continue on.
public static IParserErrorResult Continue { get; }
Property Value
- IParserErrorResult:
The IParserErrorResult that indicates to potentially report errors but continue on.
Default
Gets the IParserErrorResult that indicates to potentially report errors and return a match failure.
public static IParserErrorResult Default { get; }
Property Value
- IParserErrorResult:
The IParserErrorResult that indicates to potentially report errors and return a match failure.
Ignore
Gets the IParserErrorResult that indicates to never report errors and continue on.
public static IParserErrorResult Ignore { get; }
Property Value
- IParserErrorResult:
The IParserErrorResult that indicates to never report errors and continue on.
NoReport
Gets the IParserErrorResult that indicates to never report errors and return a match failure.
public static IParserErrorResult NoReport { get; }
Property Value
- IParserErrorResult:
The IParserErrorResult that indicates to never report errors and return a match failure.