Méthode EnumScriptWithList (Urn[])
Creates a linear Transact-SQL script that is based on an array of URNs.
Espace de noms : Microsoft.SqlServer.Management.Smo
Assembly : Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Syntaxe
'Déclaration
Public Function EnumScriptWithList ( _
urns As Urn() _
) As IEnumerable(Of String)
'Utilisation
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>
Paramètres
- urns
Type : array<Microsoft.SqlServer.Management.Sdk.Sfc. . :: . .Urn> [] () [] []
An Urn array.
Valeur de retour
Type : 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.
Notes
The return value contains data if the ScriptData property has been set to True before this method is run.
Voir aussi