Compartir a través de


Audit Constructor

Initializes a new instance of the Audit class.

Espacio de nombres:  Microsoft.SqlServer.Management.Smo
Ensamblado:  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Sintaxis

'Declaración
Public Sub New
'Uso
Dim instance As New Audit()
public Audit()
public:
Audit()
new : unit -> Audit
public function Audit()

Comentarios

The default constructor initializes all internal properties to their default values.

Ejemplos

The following code example demonstrates how to create a new instance of the Audit class.

C#

using System;

using Microsoft.SqlServer.Management.Smo;

namespace samples

{

class Program

{

static void Main(string[] args)

{

Server dbServer = new Server("(local)");

Audit dbAudit = new Audit();

}

}

}

Powershell

$dbServer = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$dbAudit = New-Object Microsoft.SqlServer.Management.Smo.Audit

Vea también

Referencia

Audit Clase

Sobrecarga de Audit

Espacio de nombres Microsoft.SqlServer.Management.Smo