Class TextParseException
public class TextParseException : GenericParserException, ISerializable
- Inheritance
-
TextParseException
- Implements
- Derived
- Inherited Members
Constructors
TextParseException(string, int, int, int, int)
public TextParseException(string message, int startPosition, int endPosition, int lineNumber, int columnNumber)
Parameters
TextParseException(string, int, int, int, int, Exception)
public TextParseException(string message, int startPosition, int endPosition, int lineNumber, int columnNumber, Exception innerException)
Parameters
messagestringstartPositionintendPositionintlineNumberintcolumnNumberintinnerExceptionException
Properties
ColumnNumber
The column number in which the error occurred.
public int ColumnNumber { get; }
Property Value
EndPosition
The ending position of the text block that could not be parsed.
public int EndPosition { get; }
Property Value
LineNumber
The line number in which the error occurred.
public int LineNumber { get; }
Property Value
StartPosition
The starting position of the text block that could not be parsed.
public int StartPosition { get; }