TraceContextRecord 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ASP.NET 추적 메시지 및 관련 데이터를 나타냅니다.
public ref class TraceContextRecord sealed
public sealed class TraceContextRecord
type TraceContextRecord = class
Public NotInheritable Class TraceContextRecord
- 상속
-
TraceContextRecord
예제
다음 코드 예제에서는 등록 하는 방법을 보여 줍니다.는 TraceContextEventHandler 처리 하는 대리자는 TraceFinished 이벤트입니다. 이 예제에서는 합니다 OnTraceFinished
메서드는 컬렉션에 액세스 TraceContextRecord 를 통해 개체를 TraceRecords 속성을 반복 하 고 응답 스트림에 씁니다.
<%@ Page language="c#" Trace="true" %>
<script runat="server">
void Page_Load(object sender, EventArgs e)
{
// Register a handler for the TraceFinished event.
Trace.TraceFinished += new
TraceContextEventHandler(this.OnTraceFinished);
// Write a trace message.
Trace.Write("Web Forms Infrastructure Methods", "USERMESSAGE: Page_Load complete.");
}
// A TraceContextEventHandler for the TraceFinished event.
void OnTraceFinished(object sender, TraceContextEventArgs e)
{
TraceContextRecord r = null;
// Iterate through the collection of trace records and write
// them to the response stream.
foreach(object o in e.TraceRecords)
{
r = (TraceContextRecord)o;
Response.Write(String.Format("trace message: {0} <BR>", r.Message));
}
}
</script>
<%@ Page language="VB" Trace="true" %>
<script runat="server">
' The Page_Load method.
Private Sub Page_Load(sender As Object, e As EventArgs)
' Register a handler for the TraceFinished event.
AddHandler Trace.TraceFinished, AddressOf OnTraceFinished
' Write a trace message.
Trace.Write("Web Forms Infrastructure Methods", "USERMESSAGE: Page_Load complete.")
End Sub ' Page_Load
' A TraceContextEventHandler for the TraceFinished event.
Private Sub OnTraceFinished(sender As Object, e As TraceContextEventArgs)
Dim r As TraceContextRecord
Dim o As Object
' Iterate through the collection of trace records and write
' them to the response stream.
For Each o In e.TraceRecords
r = CType(o, TraceContextRecord)
Response.Write(String.Format("trace message: {0} <BR>", r.Message))
Next
End Sub ' OnTraceFinished
</script>
설명
합니다 TraceContextRecord 개체는 추적 메시지, 범주, 관련된 캡슐화 Exception에 의해 추적 레코드를 작성 하는 여부는 TraceContext.Warn 메서드.
호출할 때마다 합니다 TraceContext.Write 및 TraceContext.Warn 메서드 생성을 TraceContextRecord 에 추가 되는 개체는 TraceContextEventArgs.TraceRecords 메시지 컬렉션입니다. 처리 하 여 레코드의 컬렉션에 액세스할 수 있습니다는 TraceFinished 이벤트입니다.
생성자
TraceContextRecord(String, String, Boolean, Exception) |
TraceContextRecord 클래스의 새 인스턴스를 초기화합니다. |
속성
Category |
추적 레코드의 사용자 정의 범주를 가져옵니다. |
ErrorInfo |
추적 레코드와 관련된 Exception(있는 경우)을 가져옵니다. |
IsWarning |
추적 레코드가 Warn 메서드 호출과 관련되었는지 여부를 나타내는 값을 가져옵니다. |
Message |
사용자 정의 추적 메시지를 가져옵니다. |
메서드
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |
적용 대상
추가 정보
.NET