TSqlParser.ParseExpression Method (TextReader, IList<ParseError>%, Int32, Int32, Int32)
Returns an expression and a list of errors by using the provided values.
Namespace: Microsoft.SqlServer.TransactSql.ScriptDom
Assembly: Microsoft.SqlServer.TransactSql.ScriptDom (in Microsoft.SqlServer.TransactSql.ScriptDom.dll)
Syntax
'Declaration
Public MustOverride Function ParseExpression ( _
input As TextReader, _
<OutAttribute> ByRef errors As IList(Of ParseError), _
startOffset As Integer, _
startLine As Integer, _
startColumn As Integer _
) As ScalarExpression
'Usage
Dim instance As TSqlParser
Dim input As TextReader
Dim errors As IList(Of ParseError)
Dim startOffset As Integer
Dim startLine As Integer
Dim startColumn As Integer
Dim returnValue As ScalarExpression
returnValue = instance.ParseExpression(input, _
errors, startOffset, startLine, startColumn)
public abstract ScalarExpression ParseExpression(
TextReader input,
out IList<ParseError> errors,
int startOffset,
int startLine,
int startColumn
)
public:
virtual ScalarExpression^ ParseExpression(
TextReader^ input,
[OutAttribute] IList<ParseError^>^% errors,
int startOffset,
int startLine,
int startColumn
) abstract
abstract ParseExpression :
input:TextReader *
errors:IList<ParseError> byref *
startOffset:int *
startLine:int *
startColumn:int -> ScalarExpression
public abstract function ParseExpression(
input : TextReader,
errors : IList<ParseError>,
startOffset : int,
startLine : int,
startColumn : int
) : ScalarExpression
Parameters
- input
Type: System.IO.TextReader
The script that will be parsed.
- errors
Type: System.Collections.Generic.IList<ParseError>%
When this method returns, contains the list of error that occurred during parsing. This parameter is passed uninitialized.
- startOffset
Type: System.Int32
The offset where the parse starts. This parameter is passed uninitialized.
- startLine
Type: System.Int32
The line number where the parse starts. This parameter is passed uninitialized.
- startColumn
Type: System.Int32
The column number in the line where the parse starts. This parameter is passed uninitialized.
Return Value
Type: Microsoft.SqlServer.TransactSql.ScriptDom.ScalarExpression
An expression.