EnumScriptWithList Método (Urn[])
Creates a linear Transact-SQL script that is based on an array of URNs.
Espacio de nombres: Microsoft.SqlServer.Management.Smo
Ensamblado: Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Sintaxis
'Declaración
Public Function EnumScriptWithList ( _
urns As Urn() _
) As IEnumerable(Of String)
'Uso
Dim instance As Scripter
Dim urns As Urn()
Dim returnValue As IEnumerable(Of String)
returnValue = instance.EnumScriptWithList(urns)
public IEnumerable<string> EnumScriptWithList(
Urn[] urns
)
public:
IEnumerable<String^>^ EnumScriptWithList(
array<Urn^>^ urns
)
member EnumScriptWithList :
urns:Urn[] -> IEnumerable<string>
public function EnumScriptWithList(
urns : Urn[]
) : IEnumerable<String>
Parámetros
- urns
Tipo: array<Microsoft.SqlServer.Management.Sdk.Sfc. . :: . .Urn> [] () [] []
An Urn array.
Valor devuelto
Tipo: System.Collections.Generic. . :: . .IEnumerable< (Of < ( <'String> ) > ) >
An IEnumerable interface that exposes an enumerator that supports a simple iteration over a script. This script contains Urn objects and the DependencyCollection for each of those URNs.
Comentarios
The return value contains data if the ScriptData property has been set to True before this method is run.
Vea también