Udostępnij za pośrednictwem


Konstruktor Audit

Inicjuje nowe wystąpienie Audit klasy

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo
Zestaw:  Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)

Składnia

'Deklaracja
Public Sub New
'Użycie

Dim instance As New Audit()
public Audit()
public:
Audit()
new : unit -> Audit
public function Audit()

Uwagi

Konstruktor domyślny inicjalizuje wszystkie wewnętrzne właściwości ich wartości domyślne.

Przykłady

Poniższy przykład kodu ilustruje sposób tworzenia nowego wystąpienie klasy inspekcji.

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