TraceContextRecord Class
Represents an ASP.NET trace message and any associated data.
Assembly: System.Web (in System.Web.dll)
The TraceContextRecord type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Category | Gets the user-defined category for the trace record. |
![]() | ErrorInfo | Gets the Exception associated with the trace record, if one is available. |
![]() | IsWarning | Gets a value indicating whether the trace record is associated with a TraceContext::Warn method call. |
![]() | Message | Gets the user-defined trace message. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The TraceContextRecord object encapsulates the trace message, category, any associated Exception, and whether the trace record was written by the TraceContext::Warn method.
Every call to the TraceContext::Write and TraceContext::Warn methods generates a TraceContextRecord object that is added to the TraceContextEventArgs::TraceRecords messages collection. You can access the collection of records by handling the TraceFinished event.
The following code example demonstrates how you can register a TraceContextEventHandler delegate to handle the TraceFinished event. In this example, the OnTraceFinished method accesses the collection of TraceContextRecord objects through the TraceRecords property, iterates through them, and writes them to the response stream.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.


