This documentation is archived and is not being maintained.
HttpRuntime.ProcessRequest Method
.NET Framework 1.1
Drives all ASP.NET Web processing execution.
[Visual Basic] Public Shared Sub ProcessRequest( _ ByVal wr As HttpWorkerRequest _ ) [C#] public static void ProcessRequest( HttpWorkerRequest wr ); [C++] public: static void ProcessRequest( HttpWorkerRequest* wr ); [JScript] public static function ProcessRequest( wr : HttpWorkerRequest );
Parameters
- wr
- An HttpWorkerRequest for the current application.
Exceptions
| Exception Type | Condition |
|---|---|
| ArgumentNullException | THe wr parameter is a null reference (Nothing in Visual Basic). |
Remarks
This method is provided for use when your code implements its own hosting environment. It also can be used to execute child requests when your code implements its own HttpWorkerRequest
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
HttpRuntime Class | HttpRuntime Members | System.Web Namespace
Show: