共用方式為


ParseError 建構函式

Initializes a new instance of the ParseError class.

命名空間:  Microsoft.SqlServer.TransactSql.ScriptDom
組件:  Microsoft.SqlServer.TransactSql.ScriptDom (在 Microsoft.SqlServer.TransactSql.ScriptDom.dll 中)

語法

'宣告
Public Sub New ( _
    number As Integer, _
    offset As Integer, _
    line As Integer, _
    column As Integer, _
    message As String _
)
'用途
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
)

參數

  • offset
    型別:System.Int32
    The starting offset of the AST that caused the error.
  • line
    型別:System.Int32
    The line where the error is located.
  • column
    型別:System.Int32
    The column where the error is located.

請參閱

參考

ParseError 類別

Microsoft.SqlServer.TransactSql.ScriptDom 命名空間