Example for asp.net 4.5 using Microsoft.WebSockets NuGet

Can someone give me a link to the article code \ sample, which uses the html 5 web socket using asp.net and the Microsoft NuGet package for Microsoft.WebSockets.

Thanks.

+4
source share
2 answers

In the Microsoft.WebSockets package, you can basically write an event-driven WebSocket application. See http://alexjmackey.wordpress.com/2012/05/01/websockets-with-asp-net-4-5-and-visual-studio-11/ for an example that uses the package to implement a simple chat server .

+3
source
+1
source

Source: https://habr.com/ru/post/1433263/


All Articles