PhoenixmlDb.XQuery

ParseError

A single parse error with source location information.

#ParseError

Namespace: PhoenixmlDb.XQuery.Parser

A single parse error with source location information.

Instances are produced by the parser and collected in

or returned via

. Line numbers are 1-based; column numbers are 0-based character offsets within the line.

#Constructors

##ctor(String,Int32,Int32)

A single parse error with source location information.

Parameters:

  • Message — A human-readable description of the syntax error.

  • Line — The 1-based line number where the error occurred.

  • Column — The 0-based column (character offset) within the line.

Instances are produced by the parser and collected in

or returned via

. Line numbers are 1-based; column numbers are 0-based character offsets within the line.

#Properties

Name Description
Column The 0-based column (character offset) within the line.
Line The 1-based line number where the error occurred.
Message A human-readable description of the syntax error.