HttpContext.DisposeOnPipelineCompleted(IDisposable) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.