TraceHandler.ShowRequests Method

Definition

Overloads

ShowRequests(ArrayList)

Writes the details of recent HTTP request traffic to the response stream.

ShowRequests(IList)

Writes the details of recent HTTP request traffic to the response stream.

ShowRequests(ArrayList)

Writes the details of recent HTTP request traffic to the response stream.

protected:
 void ShowRequests(System::Collections::ArrayList ^ datasets);
protected void ShowRequests (System.Collections.ArrayList datasets);
member this.ShowRequests : System.Collections.ArrayList -> unit
Protected Sub ShowRequests (datasets As ArrayList)

Parameters

datasets
ArrayList

Applies to

ShowRequests(IList)

Writes the details of recent HTTP request traffic to the response stream.

protected:
 void ShowRequests(System::Collections::IList ^ data);
protected void ShowRequests (System.Collections.IList data);
member this.ShowRequests : System.Collections.IList -> unit
Protected Sub ShowRequests (data As IList)

Parameters

data
IList

A set of DataSet objects that represent the recent HTTP requests the server has processed.

Remarks

The ShowRequests method writes tracing details to the response stream, including information on the most recent HTTP requests that ASP.NET has processed for the site. It is called by ProcessRequest, and cannot be overridden.

Applies to