TSqlParserToken 생성자 (TSqlTokenType, Int32, String, Int32, Int32)
Initializes a new instance of the TSqlParserToken class with the specified type, offset, text, line and column of the token.
네임스페이스: Microsoft.SqlServer.TransactSql.ScriptDom
어셈블리: Microsoft.SqlServer.TransactSql.ScriptDom(Microsoft.SqlServer.TransactSql.ScriptDom.dll)
구문
‘선언
Public Sub New ( _
type As TSqlTokenType, _
offset As Integer, _
text As String, _
line As Integer, _
column As Integer _
)
‘사용 방법
Dim type As TSqlTokenType
Dim offset As Integer
Dim text As String
Dim line As Integer
Dim column As Integer
Dim instance As New TSqlParserToken(type, offset, _
text, line, column)
public TSqlParserToken(
TSqlTokenType type,
int offset,
string text,
int line,
int column
)
public:
TSqlParserToken(
TSqlTokenType type,
int offset,
String^ text,
int line,
int column
)
new :
type:TSqlTokenType *
offset:int *
text:string *
line:int *
column:int -> TSqlParserToken
public function TSqlParserToken(
type : TSqlTokenType,
offset : int,
text : String,
line : int,
column : int
)
매개 변수
- type
유형: Microsoft.SqlServer.TransactSql.ScriptDom.TSqlTokenType
The token type.
- offset
유형: System.Int32
The token offset.
- text
유형: System.String
The token text.
- line
유형: System.Int32
The token line.
- column
유형: System.Int32
The token column.