HttpListenerPrefixCollection::Remove Method (String^)
.NET Framework (current version)
Removes the specified Uniform Resource Identifier (URI) from the list of prefixes handled by the HttpListener object.
Assembly: System (in System.dll)
Parameters
- uriPrefix
-
Type:
System::String^
A String that contains the URI prefix to remove.
Return Value
Type: System::Booleantrue if the uriPrefix was found in the HttpListenerPrefixCollection and removed; otherwise false.
Implements
ICollection<T>::Remove(T)| Exception | Condition |
|---|---|
| ArgumentNullException | uriPrefix is null. |
| HttpListenerException | A Windows function call failed. To determine the cause of the exception, check the exception's error code. |
| ObjectDisposedException | The HttpListener associated with this collection is closed. |
If uriPrefix is not in the collection, this method does nothing.
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.
.NET Framework
Available since 2.0
Available since 2.0
Show: