¡@

Home 

c# Programming Glossary: listener.start

URL mapping with C# HttpListener

http://stackoverflow.com/questions/10017564/url-mapping-with-c-sharp-httplistener

listener new HttpListener listener.Prefixes.Add http 8080 listener.Start while isRunning HttpListenerContext ctx listener.GetContext.. listener new HttpListener listener.Prefixes.Add http 8080 listener.Start while true HttpListenerContext ctx listener.GetContext ThreadPool.QueueUserWorkItem.. listener new HttpListener listener.Prefixes.Add http 8080 listener.Start while true HttpListenerContext ctx listener.GetContext ThreadPool.QueueUserWorkItem..

Using .Net 4.5 Async Feature for Socket Programming

http://stackoverflow.com/questions/12630827/using-net-4-5-async-feature-for-socket-programming

listener new TcpListener IPAddress.Any 6666 try listener.Start just fire and forget. We break from the forgotten async loops..

Serving large files with C# HttpListener

http://stackoverflow.com/questions/13385633/serving-large-files-with-c-sharp-httplistener

listener new HttpListener listener.Prefixes.Add http 8080 listener.Start Task.Factory.StartNew while true HttpListenerContext context..

Websocket server: onopen function on the web socket is never called

http://stackoverflow.com/questions/2211898/websocket-server-onopen-function-on-the-web-socket-is-never-called

args var listener new TcpListener IPAddress.Loopback 8181 listener.Start using var client listener.AcceptTcpClient using var stream client.GetStream..

Proper way to stop TcpListener

http://stackoverflow.com/questions/365370/proper-way-to-stop-tcplistener

Server Initialized listening for incoming connections listener.Start while listen Step 0 Client connection TcpClient client listener.AcceptTcpClient..

Multi-threading with .Net HttpListener

http://stackoverflow.com/questions/4672010/multi-threading-with-net-httplistener

new HttpListener listener.Prefixes.Add @ http 8077 listener.Start listenerThread new Thread HandleRequests listenerThread.Start.. port _listener.Prefixes.Add String.Format @ http 0 port _listener.Start _listenerThread.Start for int i 0 i _workers.Length i _workers..

Httplistener and file upload

http://stackoverflow.com/questions/8466703/httplistener-and-file-upload

listener.Prefixes.Add http localhost 8080 ListenerTest listener.Start HttpListenerContext context listener.GetContext SaveFile context.Request.ContentEncoding..