HttpListenerResponse.Abort Method

Definition

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.

Applies to

See also