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.
Creates a set of scripting options by performing an addition operation on a ScriptingOptions object and a ScriptOption object.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Shared Operator + ( _
options As ScriptingOptions, _
scriptOption As ScriptOption _
) As ScriptingOptions
'Usage
Dim options As ScriptingOptions
Dim scriptOption As ScriptOption
Dim returnValue As ScriptingOptions
returnValue = (options + scriptOption)
public static ScriptingOptions operator +(
ScriptingOptions options,
ScriptOption scriptOption
)
public:
static ScriptingOptions^ operator +(
ScriptingOptions^ options,
ScriptOption^ scriptOption
)
static let inline(+)
options:ScriptingOptions *
scriptOption:ScriptOption : ScriptingOptions
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- options
Type: Microsoft.SqlServer.Management.Smo.ScriptingOptions
A ScriptingOptions object that specifies the scripting options.
- scriptOption
Type: Microsoft.SqlServer.Management.Smo.ScriptOption
A ScriptOption object that specifies the script option.
Return Value
Type: Microsoft.SqlServer.Management.Smo.ScriptingOptions
A ScriptingOptions object value that specifies a set of scripting options after the addition.
Examples
The following code example creates a new set of script options by adding a ScriptOption value to an existing ScriptingOptions object.
PowerShell
$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.NoXmlNamespaces = $TRUE
$scOps.Permissions = $TRUE
$scOps2 = [Microsoft.SqlServer.Management.Smo.ScriptingOptions]::op_Addition($scOps, [Microsoft.SqlServer.Management.Smo.ScriptOption]::WithDependencies)
See Also
Reference
Microsoft.SqlServer.Management.Smo Namespace