TSqlParser.TryParseSqlModuleObjectName 方法
Indicates whether the input script contains a SQL module object name.
命名空間: Microsoft.SqlServer.TransactSql.ScriptDom
組件: Microsoft.SqlServer.TransactSql.ScriptDom (在 Microsoft.SqlServer.TransactSql.ScriptDom.dll 中)
語法
'宣告
Public Function TryParseSqlModuleObjectName ( _
input As TextReader, _
<OutAttribute> ByRef result As SchemaObjectName _
) As Boolean
'用途
Dim instance As TSqlParser
Dim input As TextReader
Dim result As SchemaObjectName
Dim returnValue As Boolean
returnValue = instance.TryParseSqlModuleObjectName(input, _
result)
public bool TryParseSqlModuleObjectName(
TextReader input,
out SchemaObjectName result
)
public:
bool TryParseSqlModuleObjectName(
TextReader^ input,
[OutAttribute] SchemaObjectName^% result
)
member TryParseSqlModuleObjectName :
input:TextReader *
result:SchemaObjectName byref -> bool
public function TryParseSqlModuleObjectName(
input : TextReader,
result : SchemaObjectName
) : boolean
參數
- input
型別:System.IO.TextReader
The script that will be parsed.
- result
型別:Microsoft.SqlServer.TransactSql.ScriptDom.SchemaObjectName%
When this method returns, contains the SQL module object name. This parameter is passed uninitialized.
傳回值
型別:System.Boolean
true if the input script contains a SQL module object name; otherwise false.