Backup Constructor
Initializes a new instance of the Backup class.
Espacio de nombres: Microsoft.SqlServer.Management.Smo
Ensamblado: Microsoft.SqlServer.SmoExtended (en Microsoft.SqlServer.SmoExtended.dll)
Sintaxis
'Declaración
Public Sub New
'Uso
Dim instance As New Backup()
public Backup()
public:
Backup()
new : unit -> Backup
public function Backup()
Comentarios
The default constructor initializes any fields to their default values.
Ejemplos
VB
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks2012 database.
Dim db As Database
db = srv.Databases("AdventureWorks2012")
'Define a Backup object variable.
Dim bk As New Backup
PowerShell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2012")
$bk = new-object Microsoft.SqlServer.Management.Smo.Backup
Vea también
Referencia
Espacio de nombres Microsoft.SqlServer.Management.Smo