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 命名空间