TraceContextEventArgs::TraceRecords Property
Gets a collection of TraceContextRecord messages that are associated with the current request.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Collections::ICollectionA collection of trace records that are associated with the current request.
Every call to the TraceContext::Write and TraceContext::Warn methods generates a TraceContextRecord object that is added to the TraceRecords messages collection. The Warn method call sets the IsWarning property to true, while the other method calls set it to false.
You can iterate through the TraceRecords messages and examine records with specific categories or messages, and whether they are warnings.
| Topic | Location |
|---|---|
| Walkthrough: Using Tracing in Visual Web Developer to Help Find Web Page Errors | Building ASP .NET Web Applications in Visual Studio |
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.