HttpContext.DisposeOnPipelineCompleted(IDisposable) Method

Definition

Enables an object's Dispose() method to be called when the AspNetWebSocket connection part of this request is completed.

public:
 System::Web::ISubscriptionToken ^ DisposeOnPipelineCompleted(IDisposable ^ target);
public System.Web.ISubscriptionToken DisposeOnPipelineCompleted (IDisposable target);
member this.DisposeOnPipelineCompleted : IDisposable -> System.Web.ISubscriptionToken
Public Function DisposeOnPipelineCompleted (target As IDisposable) As ISubscriptionToken

Parameters

target
IDisposable

The object whose Dispose() method must be called when the AspNetWebSocket connection part of the request is completed.

Returns

The subscription token.

Remarks

The Dispose method of the target object is called after both the HTTP part of the request and the AspNetWebSocket connection have ended. The HttpContext object is not available for inspection.

Applies to