Właściwość Audit.FileName
Pobiera nazwę pliku, w którym informacje dziennika inspekcji jest rejestrowana, kiedy audytu obiekt docelowy jest plikiem.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo
Zestaw: Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)
Składnia
'Deklaracja
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property FileName As String
Get
'Użycie
Dim instance As Audit
Dim value As String
value = instance.FileName
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public string FileName { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property String^ FileName {
String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member FileName : string
function get FileName () : String
Wartość właściwości
Typ: System.String
A String wartość Określa nazwę pliku, w którym są rejestrowane informacje dziennika inspekcji.
Uwagi
zestaw audytu obiekt docelowy należy wpisać przy użyciu AuditDestinationType() właściwość.
Przykłady
Poniższy przykład kodu pokazuje jak uzyskać nazwę audytu obiekt docelowy pliku.
C#
using System;
using Microsoft.SqlServer.Management.Smo;
namespace samples
{
class Program
{
static void Main(string[] args)
{
//Create the audit
Server dbServer = new Server("(local)");
Audit dbAudit = new Audit(dbServer, "Test Audit");
dbAudit.DestinationType = AuditDestinationType.File;
dbAudit.FilePath = "C:\\AuditDirectory";
dbAudit.Create();
//Display the file name information on the console
Console.Writeline("The audit filename is: " +
dbAudit.FileName);
}
}
}
PowerShell
#Create the audit
$dbServer = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$dbAudit = New-Object Microsoft.SqlServer.Management.Smo.Audit($dbServer, "Test Audit")
$dbAudit.DestinationType = [Microsoft.SqlServer.Management.Smo.AuditDestinationType]'File'
$dbAudit.FilePath = "C:\AuditDirectory"
$dbAudit.Create()
#Display the file name information
Write-Host "The audit filename is:" $dbAudit.FileName