HttpListener.Start Method
Allows this instance to receive incoming requests.
Assembly: System (in System.dll)
| Exception | Condition |
|---|---|
| HttpListenerException |
A Win32 function call failed. Check the exception's ErrorCode property to determine the cause of the exception. |
| ObjectDisposedException |
This object is closed. |
This method must be called before you call the GetContext or BeginGetContext method.
After you have started an HttpListener object, you can use the Stop method to stop it.
Note
|
|---|
|
If this listener instance uses https, you must install and select a Server Certificate. Otherwise, an HttpWebRequest query of this HttpListener will fail with an unexpected close of the connection. You can configure Server Certificates and other listener options by using HttpCfg.exe. See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/http/http/httpcfg_exe.asp for more details. |
Notes to Callers
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 Start method to begin processing incoming requests.
public static void NonblockingListener(string [] prefixes) { HttpListener listener = new HttpListener(); foreach (string s in prefixes) { listener.Prefixes.Add(s); } listener.Start(); IAsyncResult result = listener.BeginGetContext(new AsyncCallback(ListenerCallback),listener); // Applications can do some work here while waiting for the // request. If no work can be done until you have processed a request, // use a wait handle to prevent this thread from terminating // while the asynchronous operation completes. Console.WriteLine("Waiting for request to be processed asyncronously."); result.AsyncWaitHandle.WaitOne(); Console.WriteLine("Request processed asyncronously."); listener.Close(); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
netsh http add urlacl http://+:80/ user=domain\user
See this page:
http://msdn.microsoft.com/en-us/library/cc307223(VS.85).aspx
This is required to enable the designated user to service requests in both http and https. In Windows editions later than XP, HttpCfg.exe (mentioned in the topic) is not applicable.
- 2/8/2011
- Alan Cameron Wills -
- 2/8/2011
- Alan Cameron Wills -
Note