HttpListener Constructor
Initializes a new instance of the HttpListener class.
Namespace: System.Net
Assembly: System (in System.dll)
| Exception | Condition |
|---|---|
| PlatformNotSupportedException | This class cannot be used on the current operating system. Windows Server 2003 or Windows XP SP2 is required to use instances of this class. |
Before using the instance returned by this constructor, you must invoke its Start method.
Notes to CallersNote: This member outputs trace information when you enable network tracing in your application. For more information, see Network Tracing.
The following code example demonstrates using the HttpListener constructor to create a new HttpListener object. For the complete example, see the HttpListener class topic.
// Set up a listener. HttpListener listener = new HttpListener(); foreach (string s in prefixes) { listener.Prefixes.Add(s); } listener.Start();
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.