HttpRequest.HttpRequest Constructor
.NET Framework 3.0
This constructor supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Initializes an HttpRequest object.
Namespace: System.WebAssembly: System.Web (in system.web.dll)
public HttpRequest ( String filename, String url, String queryString )
public function HttpRequest ( filename : String, url : String, queryString : String )
Not applicable.
Parameters
- filename
The name of the file associated with the request.
- url
Information regarding the URL of the current request.
- queryString
The entire query string sent with the request (everything after the'?').
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.
Community Additions
ADD
Show: