WebAuthenticationFailureAuditEvent Constructors

Definition

Initializes a new instance of the WebAuthenticationFailureAuditEvent class.

Overloads

WebAuthenticationFailureAuditEvent(String, Object, Int32, String)

Initializes a new instance of the WebAuthenticationFailureAuditEvent class with the specified event parameters.

WebAuthenticationFailureAuditEvent(String, Object, Int32, Int32, String)

Initializes a new instance of the WebAuthenticationFailureAuditEvent class with the specified event parameters.

WebAuthenticationFailureAuditEvent(String, Object, Int32, String)

Initializes a new instance of the WebAuthenticationFailureAuditEvent class with the specified event parameters.

protected internal WebAuthenticationFailureAuditEvent (string message, object eventSource, int eventCode, string nameToAuthenticate);

Parameters

message
String

The event description.

eventSource
Object

The object that is the source of the event.

eventCode
Int32

The WebEventCodes value associated with the event.

nameToAuthenticate
String

The name of the user to authenticate.

Examples

The following code example shows how to customize this constructor.

// Invoked in case of events identified only by 
// their event code.
public SampleWebAuthenticationFailureAuditEvent(
    string msg, object eventSource, 
    int eventCode, string userName):
base(msg, eventSource, eventCode, userName)
{
    // Perform custom initialization.
    customCreatedMsg =
        string.Format("Event created at: {0}",
        DateTime.Now.TimeOfDay.ToString());
}

Remarks

The WebAuthenticationFailureAuditEvent constructor is not intended to be used directly from your code. It is called by ASP.NET. You can call the WebAuthenticationFailureAuditEvent constructor when deriving from the WebAuthenticationFailureAuditEvent class.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WebAuthenticationFailureAuditEvent(String, Object, Int32, Int32, String)

Initializes a new instance of the WebAuthenticationFailureAuditEvent class with the specified event parameters.

protected internal WebAuthenticationFailureAuditEvent (string message, object eventSource, int eventCode, int eventDetailCode, string nameToAuthenticate);

Parameters

message
String

The event description.

eventSource
Object

The object that is the source of the event.

eventCode
Int32

The code associated with the event. When you implement a custom event, the event code must be greater than WebExtendedBase.

eventDetailCode
Int32

The WebEventCodes value that specifies the detailed identifier for the event.

nameToAuthenticate
String

The name of the user to authenticate.

Examples

The following code example shows how to customize this constructor.

// Invoked in case of events identified by their event code.and 
// event detailed code.
public SampleWebAuthenticationFailureAuditEvent(
    string msg, object eventSource,
    int eventCode, int detailedCode, string userName):
base(msg, eventSource, eventCode, detailedCode, userName)
{
    // Perform custom initialization.
    customCreatedMsg =
    string.Format("Event created at: {0}",
        DateTime.Now.TimeOfDay.ToString());
}

Remarks

The WebAuthenticationFailureAuditEvent constructor is not intended to be used directly from your code. It is called by ASP.NET. You can call the WebAuthenticationFailureAuditEvent constructor when deriving from the WebAuthenticationFailureAuditEvent class.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1