HttpListenerResponse.Abort 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.
Closes the connection to the client without sending a response.
public:
void Abort();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public void Abort ();
public void Abort ();
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
member this.Abort : unit -> unit
member this.Abort : unit -> unit
Public Sub Abort ()
- Attributes
Remarks
Calling this method on an object that has already been closed has no effect. If the response has not already been closed, this method closes it and the associated HttpListenerRequest and HttpListenerContext objects. The connection to the client is also closed, regardless of the KeepAlive property value of the client request.