Remarque
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Initializes a new instance of the ParseError class.
Espace de noms : Microsoft.SqlServer.TransactSql.ScriptDom
Assembly : Microsoft.SqlServer.TransactSql.ScriptDom (en Microsoft.SqlServer.TransactSql.ScriptDom.dll)
Syntaxe
'Déclaration
Public Sub New ( _
number As Integer, _
offset As Integer, _
line As Integer, _
column As Integer, _
message As String _
)
'Utilisation
Dim number As Integer
Dim offset As Integer
Dim line As Integer
Dim column As Integer
Dim message As String
Dim instance As New ParseError(number, _
offset, line, column, message)
public ParseError(
int number,
int offset,
int line,
int column,
string message
)
public:
ParseError(
int number,
int offset,
int line,
int column,
String^ message
)
new :
number:int *
offset:int *
line:int *
column:int *
message:string -> ParseError
public function ParseError(
number : int,
offset : int,
line : int,
column : int,
message : String
)
Paramètres
- number
Type : System.Int32
The type of error.
- offset
Type : System.Int32
The starting offset of the AST that caused the error.
- line
Type : System.Int32
The line where the error is located.
- column
Type : System.Int32
The column where the error is located.
- message
Type : System.String
The error message.