Microsoft.SqlServer.TransactSql.ScriptDom by Microsoft

<PackageReference Include="Microsoft.SqlServer.TransactSql.ScriptDom" Version="161.8919.0" />

.NET API 5,156,896 bytes

 ParseError

public sealed class ParseError
This class reports the error that occured during parsing.
public int Column { get; }

Represents the starting column of the AST that caused the error.

public int Line { get; }

Represents the starting line of the AST that caused the error.

public string Message { get; }

Definition of the error.

public int Number { get; }

The error code that uniqely represents the type of error. For example, may have the form XXXXX where X is a digit.

public int Offset { get; }

Represents the starting offset of the AST that caused the error.

public ParseError(int number, int offset, int line, int column, string message)

Constructor