ServiceSecurityAuditBehavior.AuditLogLocation Eigenschaft

Definition

Dient zum Abrufen oder Festlegen des Speicherorts, in den sicherheitsbezogene Ereignisprotokolle geschrieben werden.

public:
 property System::ServiceModel::AuditLogLocation AuditLogLocation { System::ServiceModel::AuditLogLocation get(); void set(System::ServiceModel::AuditLogLocation value); };
public System.ServiceModel.AuditLogLocation AuditLogLocation { get; set; }
member this.AuditLogLocation : System.ServiceModel.AuditLogLocation with get, set
Public Property AuditLogLocation As AuditLogLocation

Eigenschaftswert

Die AuditLogLocation. Der Standardwert ist Default.

Ausnahmen

set und value sind keine gültigen Member von AuditLogLocation.

Beispiele

Im folgenden Code wird eine Instanz der ServiceSecurityAuditBehavior-Klasse erstellt und diese Eigenschaft festgelegt.

// Create a new auditing behavior and set the log location.
ServiceSecurityAuditBehavior newAudit =
    new ServiceSecurityAuditBehavior();
newAudit.AuditLogLocation =
    AuditLogLocation.Application;
' Create a new auditing behavior and set the log location.
Dim newAudit As New ServiceSecurityAuditBehavior()
newAudit.AuditLogLocation = AuditLogLocation.Application

Hinweise

Um in AuditLogLocation.Security schreiben zu können, muss der ausgeführte Thread (oder Prozess) über SeAuditPrivilege verfügen.

Sie können diesen Wert auch mithilfe von <serviceSecurityAudit> in einer Clientanwendungskonfigurationsdatei festlegen.

Gilt für: