다음을 통해 공유


WebFailureAuditEvent 생성자

정의

WebFailureAuditEvent 클래스의 새 인스턴스를 초기화합니다.

오버로드

WebFailureAuditEvent(String, Object, Int32)

제공된 매개 변수를 사용하여 WebFailureAuditEvent 클래스의 새 인스턴스를 초기화합니다.

WebFailureAuditEvent(String, Object, Int32, Int32)

제공된 매개 변수를 사용하여 WebFailureAuditEvent 클래스의 새 인스턴스를 초기화합니다.

WebFailureAuditEvent(String, Object, Int32)

제공된 매개 변수를 사용하여 WebFailureAuditEvent 클래스의 새 인스턴스를 초기화합니다.

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)

매개 변수

message
String

이벤트 설명입니다.

eventSource
Object

이벤트의 소스인 개체입니다.

eventCode
Int32

이벤트와 관련된 코드입니다. 사용자 지정 이벤트를 구현할 때 이벤트 코드는 WebExtendedBase보다 커야 합니다.

예제

다음 코드 예제이 생성자를 호출 하는 방법을 보여 줍니다는 SampleWebFailureAuditEvent 클래스입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 WebFailureAuditEvent 클래스 개요입니다.

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

설명

이 생성자는 ASP.NET 상태 모니터링 시스템에서 내부적으로 사용 됩니다. 인스턴스를 만드는 사용 하지는 WebFailureAuditEvent, 하지만이 클래스에서 상속 되는 이벤트 형식을 구현 하는 경우이 생성자를 호출할 수 있습니다.

적용 대상

WebFailureAuditEvent(String, Object, Int32, Int32)

제공된 매개 변수를 사용하여 WebFailureAuditEvent 클래스의 새 인스턴스를 초기화합니다.

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)

매개 변수

message
String

이벤트 설명입니다.

eventSource
Object

이벤트의 소스인 개체입니다.

eventCode
Int32

이벤트와 관련된 코드입니다. 사용자 지정 이벤트를 구현할 때 이벤트 코드는 WebExtendedBase보다 커야 합니다.

eventDetailCode
Int32

이벤트의 상세 식별자를 지정하는 WebEventCodes 값입니다.

예제

다음 코드 예제이 생성자를 호출 하는 방법을 보여 줍니다는 SampleWebFailureAuditEvent 클래스입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 WebFailureAuditEvent 클래스 개요입니다.

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

설명

이 생성자는 ASP.NET 상태 모니터링 시스템에서 내부적으로 사용 됩니다. 인스턴스를 만드는 사용 하지는 WebFailureAuditEvent, 하지만이 클래스에서 상속 되는 이벤트 형식을 구현 하는 경우이 생성자를 호출할 수 있습니다.

적용 대상