Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Initializes a new instance of the ScriptingOptions class based on the specified ScriptOption object, based on the specified script option.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Sub New ( _
so As ScriptOption _
)
'Usage
Dim so As ScriptOption
Dim instance As New ScriptingOptions(so)
public ScriptingOptions(
ScriptOption so
)
public:
ScriptingOptions(
ScriptOption^ so
)
new :
so:ScriptOption -> ScriptingOptions
public function ScriptingOptions(
so : ScriptOption
)
Parameters
- so
Type: Microsoft.SqlServer.Management.Smo.ScriptOption
A ScriptOption object value that specifies the script options.
Examples
The following code example creates a new instance of the ScriptingOptions class.
Visual Basic
Dim scrp As New ScriptingOptions(ScriptOption.WithDependencies)
PowerShell
$scrp = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions([Microsoft.SqlServer.Management.Smo.ScriptOption]::WithDependencies)
See Also
Reference
Microsoft.SqlServer.Management.Smo Namespace