This documentation is archived and is not being maintained.
HttpWorkerRequest.EndOfSendNotification Delegate
.NET Framework 1.1
Represents the method that notifies callers when sending of the response is complete.
[Visual Basic] <Serializable> Public Delegate Sub HttpWorkerRequest.EndOfSendNotification( _ ByVal wr As HttpWorkerRequest, _ ByVal extraData As Object _ ) [C#] [Serializable] public delegate void HttpWorkerRequest.EndOfSendNotification( HttpWorkerRequest wr, object extraData ); [C++] [Serializable] public __gc __delegate void HttpWorkerRequest.EndOfSendNotification( HttpWorkerRequest* wr, Object* extraData );
[JScript] In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.
Parameters [Visual Basic, C#, C++]
The declaration of your callback method must have the same parameters as the HttpWorkerRequest.EndOfSendNotification delegate declaration.
- wr
- The current HttpWorkerRequest.
- extraData
- Any additional data needed to process the request.
Remarks
The host can use this notification to implement buffer recycling.
Requirements
Namespace: System.Web
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
Assembly: System.Web (in System.Web.dll)
See Also
Show: