websocket-sharp
websocket-sharp copied to clipboard
A C# implementation of the WebSocket protocol client and server
# Describe the bug test code: ```cs static void Main(string[] args) { ThreadPool.SetMinThreads(127, 127); HttpServer httpServer = new HttpServer(10100); httpServer.OnGet += (sender, e) => { var url = e.Request.Url.PathAndQuery; var...
When trying to build this simple example from the README ```C# public class Chat : WebSocketBehavior { private string _suffix; public Chat() : this(null) { } public Chat(string suffix) {...
Hello, i want call few function initialization after client success connected. Does server has onOpen method or something similar?
I want to achieve the kind of online customer service feature, you can chat one on one, I try to use sessions.sendto this method, but you can not set this...
Websocket is throwing an error in WS_OnError after sending data.
Hello there, We have a Windows app written in C#, the server is pulling XML messages from the SQL Server DB, it was working perfectly fine 2 weeks ago (No...
I send a zip file content from websocket-sharp client, the send side is run normally, but if the size of file more than 300kb, the server side(also websocket-sharp) will throw...
How can I check if the socket is online when I start my application
how can i can find sessionid of message sender? with OnMessage(e As MessageEventArgs)