WebRequestErrorEvent 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
웹 요청 오류에 대한 정보를 전달하는 이벤트를 정의합니다.
public ref class WebRequestErrorEvent : System::Web::Management::WebBaseErrorEvent
public class WebRequestErrorEvent : System.Web.Management.WebBaseErrorEvent
type WebRequestErrorEvent = class
inherit WebBaseErrorEvent
Public Class WebRequestErrorEvent
Inherits WebBaseErrorEvent
- 상속
- 파생
예제
다음 코드 예제는 두 부분으로 구성 합니다. 첫 번째 부분은 ASP.NET 사용자 지정 이벤트를 사용할 수 있도록 하는 구성 파일의 일부를 보여 줍니다. 두 번째 부분에서 파생 하는 방법을 보여 줍니다는 WebRequestErrorEvent 클래스 사용자 지정 이벤트를 만듭니다.
<healthMonitoring enabled="true" heartBeatInterval="0">
<eventMappings>
<add name="SampleWebRequestErrorEvent" type="SamplesAspNet.SampleWebRequestErrorEvent,webrequesterrorevent,Version=1.0.1573.21654, Culture=neutral, PublicKeyToken=63ada862a6c5af13, processorArchitecture=MSIL"/>
</eventMappings>
<rules>
<add
name="Custom Web Request Error Events"
eventName="SampleWebRequestErrorEvent"
provider="EventLogProvider"
profile="Critical"/>
</rules>
</healthMonitoring>
using System;
using System.Text;
using System.Web;
using System.Web.Management;
namespace Samples.AspNet.Management
{
// Implements a custom WebRequestErrorEvent class.
public class SampleWebRequestErrorEvent :
WebRequestErrorEvent
{
private StringBuilder eventInfo;
// Invoked in case of events
// identified only by their event code.
public SampleWebRequestErrorEvent(string msg,
object eventSource, int eventCode,
Exception e):
base(msg, eventSource, eventCode, e)
{
// Perform custom initialization.
eventInfo = new StringBuilder();
eventInfo.Append(string.Format(
"Event created at: ", EventTime.ToString()));
}
// Invoked in case of events identified
// by their event code.and related event
// detailed code.
public SampleWebRequestErrorEvent(
string msg, object eventSource,
int eventCode, int detailedCode,
Exception e):
base(msg, eventSource,
eventCode, detailedCode, e)
{
// Perform custom initialization.
eventInfo = new StringBuilder();
eventInfo.Append(string.Format(
"Event created at: ", EventTime.ToString()));
}
// Raises the SampleWebRequestErrorEvent.
public override void Raise()
{
// Perform custom processing.
eventInfo.Append(string.Format(
"Event raised at: ", EventTime.ToString()));
// Raise the event.
base.Raise();
}
// Obtains the current request information.
public string GetRequestInfo()
{
string reqInfo = GetRequestInfo();
return reqInfo;
}
// Obtains the current thread information.
public string GetThreadInfo()
{
string threadInfo = GetThreadInfo();
return threadInfo;
}
// Obtains the current process information.
public string GetProcessInfo()
{
string procInfo = GetProcessInfo();
return procInfo;
}
//Formats Web request event information.
public override void FormatCustomEventDetails(
WebEventFormatter formatter)
{
base.FormatCustomEventDetails(formatter);
// Add custom data.
formatter.AppendLine("");
formatter.IndentationLevel += 1;
formatter.AppendLine(
"** SampleWebRequestEvent Start **");
// Add custom data.
formatter.AppendLine(eventInfo.ToString());
formatter.AppendLine(
"** SampleWebRequestEvent End **");
}
}
}
Imports System.Text
Imports System.Web
Imports System.Web.Management
' Implements a custom WebRequestErrorEvent class.
Public Class SampleWebRequestErrorEvent
Inherits WebRequestErrorEvent
Private eventInfo As StringBuilder
' 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, _
ByVal e As Exception)
MyBase.New(msg, eventSource, _
eventCode, e)
' Perform custom initialization.
eventInfo = New StringBuilder()
eventInfo.Append(String.Format( _
"Event created at: ", _
EventTime.ToString()))
End Sub
' Invoked in case of events identified
' by their event code.and related event
' detailed code.
Public Sub New(ByVal msg As String, _
ByVal eventSource As Object, _
ByVal eventCode As Integer, _
ByVal detailedCode As Integer, _
ByVal e As Exception)
MyBase.New(msg, eventSource, _
eventCode, detailedCode, e)
' Perform custom initialization.
eventInfo = New StringBuilder()
eventInfo.Append(String.Format( _
"Event created at: ", _
EventTime.ToString()))
End Sub
' Raises the SampleWebRequestErrorEvent.
Public Overrides Sub Raise()
' Perform custom processing.
eventInfo.Append(String.Format( _
"Event raised at: ", _
EventTime.ToString()))
' Raise the event.
MyBase.Raise()
End Sub
' Obtains the current request information.
Public Function GetRequestInfo() As String
Dim reqInfo As String = GetRequestInfo()
Return reqInfo
End Function 'GetRequestInfo
' Obtains the current thread information.
Public Function GetThreadInfo() As String
Dim threadInfo As String = GetThreadInfo()
Return threadInfo
End Function 'GetThreadInfo
' Obtains the current process information.
Public Function GetProcessInfo() As String
Dim procInfo As String = GetProcessInfo()
Return procInfo
End Function 'GetProcessInfo
'Formats Web request event information.
Public Overrides Sub FormatCustomEventDetails( _
ByVal formatter As WebEventFormatter)
MyBase.FormatCustomEventDetails(formatter)
' Add custom data.
formatter.AppendLine("")
formatter.IndentationLevel += 1
formatter.AppendLine( _
"** SampleWebRequestEvent Start **")
' Add custom data.
formatter.AppendLine(eventInfo.ToString())
formatter.AppendLine( _
"** SampleWebRequestEvent End **")
End Sub
End Class
설명
WebRequestErrorEvent 웹 요청 중에 오류가 발생 하는 경우 발생 합니다. 애플리케이션에 정의 된 대로 요청 관련 정보를 가져오려면이 이벤트를 사용 해야 합니다 WebRequestInformation 하며 WebThreadInformation 클래스입니다.
참고
대부분의 경우에서 표준 ASP.NET 상태 모니터링 형식 사용을 설정 하 여 해당 동작을 제어 합니다 healthMonitoring
구성 섹션입니다. 또한 다음 예에서 같이 사용자 지정 형식을 만들 수 있습니다. 사용자 지정 이벤트 형식을 만들고 고유한 정보를 추가, 사용자 지정 해야 하는 경우는 FormatCustomEventDetails 메서드를이 피해 야 할 중요 한 시스템 정보를 덮어쓰거나 훼손 됩니다.
생성자
WebRequestErrorEvent(String, Object, Int32, Exception) |
지정된 이벤트 매개 변수를 사용하여 WebRequestErrorEvent 클래스를 초기화합니다. |
WebRequestErrorEvent(String, Object, Int32, Int32, Exception) |
지정된 이벤트 매개 변수를 사용하여 WebRequestErrorEvent 클래스를 초기화합니다. |
속성
ErrorException |
오류와 연결된 Exception을 가져옵니다. (다음에서 상속됨 WebBaseErrorEvent) |
EventCode |
이벤트와 관련된 코드 값을 가져옵니다. (다음에서 상속됨 WebBaseEvent) |
EventDetailCode |
이벤트 상세 코드를 가져옵니다. (다음에서 상속됨 WebBaseEvent) |
EventID |
이벤트와 연결된 식별자를 가져옵니다. (다음에서 상속됨 WebBaseEvent) |
EventOccurrence |
이벤트가 발생한 횟수를 나타내는 카운터를 가져옵니다. (다음에서 상속됨 WebBaseEvent) |
EventSequence |
애플리케이션에서 이벤트가 발생한 횟수를 가져옵니다. (다음에서 상속됨 WebBaseEvent) |
EventSource |
이벤트를 발생시킨 개체를 가져옵니다. (다음에서 상속됨 WebBaseEvent) |
EventTime |
이벤트가 발생한 시간을 가져옵니다. (다음에서 상속됨 WebBaseEvent) |
EventTimeUtc |
이벤트가 발생한 시간을 가져옵니다. (다음에서 상속됨 WebBaseEvent) |
Message |
이벤트를 설명하는 메시지를 가져옵니다. (다음에서 상속됨 WebBaseEvent) |
ProcessInformation |
ASP.NET 애플리케이션-호스팅 프로세스에 대한 정보를 가져옵니다. (다음에서 상속됨 WebManagementEvent) |
RequestInformation |
애플리케이션 요청 정보를 가져옵니다. |
ThreadInformation |
애플리케이션 스레드 정보를 가져옵니다. |
메서드
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
FormatCustomEventDetails(WebEventFormatter) |
이벤트 정보에 대한 표준 형식을 제공합니다. (다음에서 상속됨 WebBaseEvent) |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
IncrementPerfCounters() |
관련된 성능 카운터를 증가시키기 위해 내부적으로 사용됩니다. |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
Raise() |
이벤트가 발생한 사실을 구성된 공급자에게 알려 이벤트를 발생시킵니다. (다음에서 상속됨 WebBaseEvent) |
ToString() |
표시하기 위해 이벤트 정보의 서식을 지정합니다. (다음에서 상속됨 WebBaseEvent) |
ToString(Boolean, Boolean) |
표시하기 위해 이벤트 정보의 서식을 지정합니다. (다음에서 상속됨 WebBaseEvent) |