Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

TraceContext::TraceFinished Event

 

Raised by the TraceContext object to expose trace messages after all request information is gathered.

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

public:
event TraceContextEventHandler^ TraceFinished {
	void add(TraceContextEventHandler^ value);
	void remove(TraceContextEventHandler^ value);
}

The TraceFinished event is raised during the EndRequest stage of HTTP request processing. It is raised by a TraceContext object after all request information is gathered, to expose the collection of TraceContextRecord messages to registered TraceContextEventHandler delegates.

The following code example demonstrates how you can register a TraceContextEventHandler to handle the TraceFinished event. In this example, the delegate iterates through the trace messages and writes them to the response stream; however, you could write the same information to a database or a profiling tool consumer.

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

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft