HttpWorkerRequest.EndOfSendNotification Delegate

Definition

Represents the method that Notifies callers when sending of the response is complete.

public: delegate void HttpWorkerRequest::EndOfSendNotification(HttpWorkerRequest ^ wr, System::Object ^ extraData);
public delegate void HttpWorkerRequest.EndOfSendNotification(HttpWorkerRequest wr, object extraData);
type HttpWorkerRequest.EndOfSendNotification = delegate of HttpWorkerRequest * obj -> unit
Public Delegate Sub HttpWorkerRequest.EndOfSendNotification(wr As HttpWorkerRequest, extraData As Object)

Parameters

extraData
Object

Any additional data needed to process the request.

Remarks

The host can use this notification to implement buffer recycling.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to

See also