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