HttpRequest(String, String, String) Constructor

Definition

Initializes an HttpRequest object.

public:
 HttpRequest(System::String ^ filename, System::String ^ url, System::String ^ queryString);
public HttpRequest (string filename, string url, string queryString);
new System.Web.HttpRequest : string * string * string -> System.Web.HttpRequest
Public Sub New (filename As String, url As String, queryString As String)

Parameters

filename
String

The name of the file associated with the request.

url
String

The information regarding the URL of the current request.

queryString
String

The entire query string sent with the request (everything after the '?').

Remarks

You do not need to create your own instance of the HttpRequest class. The methods and properties of the HttpRequest class are exposed through the Request property of the HttpApplication, HttpContext, Page, and UserControl classes.

Applies to