TraceHandler.ShowRequests Método

Definición

Sobrecargas

Nombre Description
ShowRequests(ArrayList)

Escribe los detalles del tráfico de solicitud HTTP reciente en el flujo de respuesta.

ShowRequests(IList)

Escribe los detalles del tráfico de solicitud HTTP reciente en el flujo de respuesta.

ShowRequests(ArrayList)

Escribe los detalles del tráfico de solicitud HTTP reciente en el flujo de respuesta.

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)

Parámetros

datasets
ArrayList

Se aplica a

ShowRequests(IList)

Escribe los detalles del tráfico de solicitud HTTP reciente en el flujo de respuesta.

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)

Parámetros

data
IList

Conjunto de DataSet objetos que representan las solicitudes HTTP recientes que el servidor ha procesado.

Comentarios

El método ShowRequests escribe los detalles de seguimiento en el flujo de respuesta, incluida la información sobre las solicitudes HTTP más recientes que ASP.NET ha procesado para el sitio. Lo llama ProcessRequest, y no se puede invalidar.

Se aplica a