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
)
매개 변수
- number
유형: System.Int32
The type of error.
- 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.
- message
유형: System.String
The error message.