This documentation is archived and is not being maintained.
HttpWorkerRequest.SetEndOfSendNotification Method
.NET Framework 1.1
Registers for an optional notification when all the response data is sent.
[Visual Basic] Public Overridable Sub SetEndOfSendNotification( _ ByVal callback As HttpWorkerRequest.EndOfSendNotification, _ ByVal extraData As Object _ ) [C#] public virtual void SetEndOfSendNotification( HttpWorkerRequest.EndOfSendNotification callback, object extraData ); [C++] public: virtual void SetEndOfSendNotification( HttpWorkerRequest.EndOfSendNotification* callback, Object* extraData ); [JScript] public function SetEndOfSendNotification( callback : HttpWorkerRequest.EndOfSendNotification, extraData : Object );
Parameters
- callback
- The notification callback that is called when all data is sent (out-of-band).
- extraData
- An additional parameter to the callback.
Remarks
This method might be helpful when you implement buffer recycling.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
HttpWorkerRequest Class | HttpWorkerRequest Members | System.Web Namespace
Show: