This topic has not yet been rated - Rate this topic

HttpApplication.AddOnBeginRequestAsync Method

Adds the specified BeginRequest event to the collection of asynchronous BeginRequest event handlers for the current request.

[Visual Basic]
Public Sub AddOnBeginRequestAsync( _
   ByVal bh As BeginEventHandler, _
   ByVal eh As EndEventHandler _
)
[C#]
public void AddOnBeginRequestAsync(
 BeginEventHandler bh,
 EndEventHandler eh
);
[C++]
public: void AddOnBeginRequestAsync(
 BeginEventHandler* bh,
 EndEventHandler* eh
);
[JScript]
public function AddOnBeginRequestAsync(
   bh : BeginEventHandler,
 eh : EndEventHandler
);

Parameters

bh
The BeginEventHandler delegate that starts asynchronous processing of the event.
eh
The EndEventHandler delegate that ends asynchronous processing of the event.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also

HttpApplication Class | HttpApplication Members | System.Web Namespace

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.