ServiceSecurityAuditBehavior.AuditLogLocation Propriété

Définition

Obtient ou définit l'emplacement où les journaux des événements relatifs à la sécurité sont écrits.

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

Valeur de propriété

L’AuditLogLocationopérateur La valeur par défaut est Default.

Exceptions

set et value ne sont pas des membres valides de AuditLogLocation.

Exemples

Le code suivant crée une instance de la classe ServiceSecurityAuditBehavior et définit cette propriété.

// 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

Remarques

Pour pouvoir écrire dans AuditLogLocation.Security, le thread (ou le processus) en cours d'exécution doit posséder SeAuditPrivilege.

Vous pouvez également définir cette valeur à l’aide de <serviceSecurityAudit> dans un fichier de configuration d’application cliente.

S’applique à