TraceContextEventArgs.TraceRecords Property

Gets a collection of TraceContextRecord messages that are associated with the current request.

Namespace: System.Web
Assembly: System.Web (in system.web.dll)

public:
property ICollection^ TraceRecords {
	ICollection^ get ();
}
/** @property */
public ICollection get_TraceRecords ()

public function get TraceRecords () : ICollection

Not applicable.

Property Value

A collection of trace records that are associated with the current request.

Every call to the System.Web.TraceContext.Write and System.Web.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.

TopicLocation
Walkthrough: Using Tracing in Visual Web Developer to Help Find Web Page ErrorsBuilding 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.

No code example is currently available or this language may not be supported.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: