Compartir a través de


Server.ServerAuditSpecifications Propiedad

Represents a collection of ServerAuditSpecification objects. Each ServerAuditSpecification object represents a specific audit specification defined on the instance of SQL Server.

Espacio de nombres:  Microsoft.SqlServer.Management.Smo
Ensamblado:  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Sintaxis

'Declaración
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,  _
    GetType(ServerAuditSpecification))> _
Public ReadOnly Property ServerAuditSpecifications As ServerAuditSpecificationCollection 
    Get
'Uso
Dim instance As Server 
Dim value As ServerAuditSpecificationCollection 

value = instance.ServerAuditSpecifications
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(ServerAuditSpecification))]
public ServerAuditSpecificationCollection ServerAuditSpecifications { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny, 
    typeof(ServerAuditSpecification))]
public:
property ServerAuditSpecificationCollection^ ServerAuditSpecifications {
    ServerAuditSpecificationCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(ServerAuditSpecification))>]
member ServerAuditSpecifications : ServerAuditSpecificationCollection
function get ServerAuditSpecifications () : ServerAuditSpecificationCollection

Valor de la propiedad

Tipo: Microsoft.SqlServer.Management.Smo.ServerAuditSpecificationCollection
A ServerAuditSpecificationCollection object that represents all the audit specifications defined on the instance of SQL Server.

Ejemplos

C#

Server srv = new Server("(local)");

ServerAuditSpecification aSpec = new ServerAuditSpecification(srv, "Example Audit Specification");
Audit srvAudit = new Audit(srv, "Test Audit");
srvAudit.DestinationType = AuditDestinationType.File;
srvAudit.FilePath = "C:\\AuditDirectory";
srvAudit.Create();

aSpec.AuditName = "Test Audit";
aSpec.Create();

foreach (ServerAuditSpecification a in srv.ServerAuditSpecifications)
{
   Console.WriteLine(a.Name);
}

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$srvAudit = new-object Microsoft.SqlServer.Management.Smo.Audit($srv, "Test Audit")
$srvAudit.DestinationType = [Microsoft.SqlServer.Management.Smo.AuditDestinationType]::File
$srvAudit.FilePath = "C:\AuditDirectory"
$srvAudit.Create()

Foreach ($a in $srv.ServerAuditSpecifications)
{
   Write-Host $a.Name
}

Vea también

Referencia

Server Clase

Espacio de nombres Microsoft.SqlServer.Management.Smo

Otros recursos

Usar colecciones

Administrar servidores