Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Indicates whether the input script contains a SQL module object name.
Namespace: Microsoft.SqlServer.TransactSql.ScriptDom
Assembly: Microsoft.SqlServer.TransactSql.ScriptDom (in Microsoft.SqlServer.TransactSql.ScriptDom.dll)
Syntax
'Declaration
Public Function TryParseSqlModuleObjectName ( _
input As TextReader, _
<OutAttribute> ByRef result As SchemaObjectName _
) As Boolean
'Usage
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
Parameter
- input
Typ: System.IO.TextReader
The script that will be parsed.
- result
Typ: Microsoft.SqlServer.TransactSql.ScriptDom.SchemaObjectName%
When this method returns, contains the SQL module object name. This parameter is passed uninitialized.
Rückgabewert
Typ: System.Boolean
true if the input script contains a SQL module object name; otherwise false.