Поделиться через


Конструктор Audit

Initializes a new instance of the Audit class.

Пространство имен:  Microsoft.SqlServer.Management.Smo
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
Public Sub New
'Применение
Dim instance As New Audit()
public Audit()
public:
Audit()
new : unit -> Audit
public function Audit()

Замечания

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

Примеры

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

См. также

Справочник

Audit Класс

Перегрузка Audit

Пространство имен Microsoft.SqlServer.Management.Smo