NetCoreServer icon indicating copy to clipboard operation
NetCoreServer copied to clipboard

Ultra fast and low latency asynchronous socket server & client C# .NET Core library with support TCP, SSL, UDP, HTTP, HTTPS, WebSocket protocols and 10K connections problem solution

Results 161 NetCoreServer issues
Sort by recently updated
recently updated
newest added

When I receive the request, I process and return, but when sending data to the client, OnDisconnecting is called and resets the connection, I don't know why this happens, because...

My app (using NetCoreServer) is running on an EC2 instance behind a network load balancer (across 3 availability zones). I'm seeing regular TcpSession.OnDisconnected() and TcpServer.OnDisconnected() events without the corresponding OnConnected()...

I am using this package for Unity, doing game dev. And Unity only support netstarndard 2.1 for now.

您好,可否将NetCoreServer项目封装为一个Nuget包。我需要这样一个Nuget包,也会自己封装,但怕有窃取您成果之嫌。 Hello, can you package NetCoreServer Project as a Nuget package? I need such a Nuget package and will also wrap it myself, but I am afraid of stealing your...

Will the data packet be automatically compressed at the bottom layer when using websocket to send messages?

Here's my class... `public class ChatClient : SslClient { public ChatClient(SslContext context, string address, int port) : base(context, address, port) { } public void DisconnectAndStop() { _stop = false; DisconnectAsync();...

I don't know the steps to reproduce, but someone, tell me where to wear a fix? ``` Unhandled exception. System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values....

it is hard to use already available function. Everytime i had to go inside code to check what a function is doing

Dear All any body Have full example to use NetCoreServer "WsChatServer" With blazor server ? Thanks