WebFailureAuditEvent Constructors

Definition

Initializes a new instance of the WebFailureAuditEvent class.

Overloads

WebFailureAuditEvent(String, Object, Int32)

Initializes a new instance of the WebFailureAuditEvent class using the supplied parameters.

WebFailureAuditEvent(String, Object, Int32, Int32)

Initializes a new instance of the WebFailureAuditEvent class using the supplied parameters.

WebFailureAuditEvent(String, Object, Int32)

Initializes a new instance of the WebFailureAuditEvent class using the supplied parameters.

protected public:
 WebFailureAuditEvent(System::String ^ message, System::Object ^ eventSource, int eventCode);
protected internal WebFailureAuditEvent (string message, object eventSource, int eventCode);
new System.Web.Management.WebFailureAuditEvent : string * obj * int -> System.Web.Management.WebFailureAuditEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer)

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.

Examples

The following code example shows how to call this constructor in the SampleWebFailureAuditEvent class. This code example is part of a larger example provided for the WebFailureAuditEvent class overview.

// Invoked in case of events identified only by their event code.
public SampleWebFailureAuditEvent(string msg, object eventSource,
    int eventCode):
base(msg, eventSource, eventCode)
{
    // Perform custom initialization.
    customCreatedMsg =
        string.Format("Event created at: {0}",
        DateTime.Now.TimeOfDay.ToString());
}
' Invoked in case of events identified only by their event code.
Public Sub New(ByVal msg As String, _
ByVal eventSource As Object, ByVal eventCode As Integer)
    MyBase.New(msg, eventSource, eventCode)
    ' Perform custom initialization.
    customCreatedMsg = String.Format("Event created at: {0}", _
    DateTime.Now.TimeOfDay.ToString())

End Sub

Remarks

This constructor is used internally by the ASP.NET health-monitoring system. You will never use it to create an instance of WebFailureAuditEvent, but you can call this constructor when implementing your own event type that inherits from this class.

Applies to

WebFailureAuditEvent(String, Object, Int32, Int32)

Initializes a new instance of the WebFailureAuditEvent class using the supplied parameters.

protected public:
 WebFailureAuditEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, int eventDetailCode);
protected internal WebFailureAuditEvent (string message, object eventSource, int eventCode, int eventDetailCode);
new System.Web.Management.WebFailureAuditEvent : string * obj * int * int -> System.Web.Management.WebFailureAuditEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, eventDetailCode As Integer)

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.

Examples

The following code example shows how to call this constructor in the SampleWebFailureAuditEvent class. This code example is part of a larger example provided for the WebFailureAuditEvent class overview.

// Invoked in case of events identified by their event code and 
// event detailed code.
public SampleWebFailureAuditEvent(string msg, object eventSource,
    int eventCode, int detailedCode):
base(msg, eventSource, eventCode, detailedCode)
{
    // Perform custom initialization.
    customCreatedMsg =
    string.Format("Event created at: {0}",
        DateTime.Now.TimeOfDay.ToString());
}
' Invoked in case of events identified by their event code and 
' event detailed code.
Public Sub New(ByVal msg As String, ByVal eventSource As Object, _
ByVal eventCode As Integer, ByVal detailedCode As Integer)
    MyBase.New(msg, eventSource, eventCode, detailedCode)
    ' Perform custom initialization.
    customCreatedMsg = String.Format("Event created at: {0}", _
    DateTime.Now.TimeOfDay.ToString())

End Sub

Remarks

This constructor is used internally by the ASP.NET health-monitoring system. You will never use it to create an instance of WebFailureAuditEvent, but you can call this constructor when implementing your own event type that inherits from this class.

Applies to