ServiceSecurityAuditBehavior.MessageAuthenticationAuditLevel 属性

定义

获取或设置要在消息级别审核的身份验证事件的类型。

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

属性值

AuditLevel

AuditLevel 枚举值之一。 默认值为 None

例外

setvalue 均不是 AuditLevel 的有效成员。

示例

下面的代码创建 ServiceSecurityAuditBehavior 类的实例并设置此属性。

// Create a new auditing behavior and set the log location.
ServiceSecurityAuditBehavior newAudit =
    new ServiceSecurityAuditBehavior();
newAudit.AuditLogLocation =
    AuditLogLocation.Application;
newAudit.MessageAuthenticationAuditLevel =
    AuditLevel.SuccessOrFailure;
newAudit.ServiceAuthorizationAuditLevel =
    AuditLevel.SuccessOrFailure;
newAudit.MessageAuthenticationAuditLevel = _
    AuditLevel.SuccessOrFailure
newAudit.ServiceAuthorizationAuditLevel = _
    AuditLevel.SuccessOrFailure

注解

Windows Communication Foundation (WCF) 服务应用程序具有两个级别,可在其中强制实施安全性。 在 服务级别 ,服务的所有方法都由同一安全策略强制实施。 服务中的个别方法可能具有不同的(更为严格的)安全策略。 使用 MessageAuthenticationAuditLevel 属性可控制要审核的消息级别事件。

还可以在客户端应用程序配置文件中使用 <serviceSecurityAudit> 设置此值。

适用于