Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HttpListener::Abort Method ()

 

Shuts down the HttpListener object immediately, discarding all currently queued requests.

Namespace:   System.Net
Assembly:  System (in System.dll)

public:
void Abort()

This method disposes of all resources held by this listener. Any pending requests are unable to complete.

After calling this method, you will receive an ObjectDisposedException if you attempt to use this HttpListener.

Notes to Callers:

This member outputs trace information when you enable network tracing in your application. For more information, see Network Tracing in the .NET Framework.

The following code example demonstrates calling this method.

public static void CheckTestUrl(HttpListener listener, HttpListenerRequest request)
{
    if (request.RawUrl == "/www.contoso.com/test/NoReply")
    {
        listener.Abort ();
        return;
    }

}

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft