SingleSignOnEventLogLevel Enumeration

 

Define the types of event logs and audit events written by AD FS components. The SingleSignOnEventLogLevel enumeration is part of the Federation Service’s trust policy configuration. It is also used in the configuration of the Federation Service proxy and claims-based web agent.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:   System.Web.Security.SingleSignOn
Assembly:  System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)

Syntax

[ComVisibleAttribute(true)]
[FlagsAttribute]
public enum SingleSignOnEventLogLevel
[ComVisibleAttribute(true)]
[FlagsAttribute]
public enum class SingleSignOnEventLogLevel
[<ComVisibleAttribute(true)>]
[<FlagsAttribute>]
type SingleSignOnEventLogLevel
<ComVisibleAttribute(True)>
<FlagsAttribute>
Public Enumeration SingleSignOnEventLogLevel

Members

Member name Description
DetailedFailure

A failure audit event with detailed information about each token involved in the transaction (including the claims and so on).

DetailedSuccess

A successful audit event with detailed information about each token involved in the transaction (including the claims and so on).

Error

An error event. This indicates a significant problem the user should be aware of; usually a loss of functionality or data.

Everything

All the events in this enumeration. This is the default value.

FailureAudit

A failure audit event. This indicates a security event that occurs when an audited access attempt fails; for example, a failed attempt to open a file.

Info

An information event. This indicates a significant, successful operation.

SuccessAudit

A success audit event. This indicates a security event that occurs when an audited access attempt is successful; for example, logging on successfully.

Warning

A warning event. This indicates a problem that is not immediately significant, but that may signify conditions that could cause future issues.

See Also

System.Web.Security.SingleSignOn Namespace

Return to top