ServiceSecurityAuditBehavior Constructor

Definition

Initializes a new instance of the ServiceSecurityAuditBehavior class.

public:
 ServiceSecurityAuditBehavior();
public ServiceSecurityAuditBehavior ();
Public Sub New ()

Examples

The following code creates an instance of the ServiceSecurityAuditBehavior class.

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

Remarks

The instance is created with the following default settings:

Applies to