You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ A tiny, cross-platform, module based, MIT-licensed web server for .NET Framework
19
19
* Create REST APIs quickly with the out-of-the-box Web Api module
20
20
* Serve static files with 1 line of code (also out-of-the-box)
21
21
* Handle sessions with the built-in LocalSessionWebModule
22
-
*Web Sockets support (Not available on Mono 3.x though)
22
+
*WebSockets support (see notes below)
23
23
* CORS support. Origin, Header and Method validation with OPTIONS preflight
24
24
* Supports HTTP 206 Partial Content
25
25
*[OWIN](http://owin.org/) Middleware support via [Owin Middleware Module](https://github.com/unosquare/embedio-extras/tree/master/Unosquare.Labs.EmbedIO.OwinMiddleware).
@@ -33,6 +33,15 @@ A tiny, cross-platform, module based, MIT-licensed web server for .NET Framework
33
33
* Create GUIs for Windows services or Linux daemons
34
34
* Write client applications with real-time communication between them
35
35
36
+
Some notes regarding WebSocket support:
37
+
38
+
| Runtime | WebSocket support | Notes |
39
+
| --- | --- | --- |
40
+
| NET452 | Yes | Support Win7+ OS using a custom System.Net implementation based on Mono and [websocket-sharp](https://github.com/sta/websocket-sharp/)|
41
+
| NET46 | Yes | Support Win8+ OS using native System.Net library |
42
+
| MONO | Yes | Support Windows and Linux using custom System.Net implementation based on Mono and [websocket-sharp](https://github.com/sta/websocket-sharp/)|
43
+
| NETCORE10 | Yes | Support using a custom System.Net implementation based on Mono and [websocket-sharp](https://github.com/sta/websocket-sharp/)|
44
+
36
45
NuGet Installation:
37
46
-------------------
38
47
```
@@ -270,7 +279,7 @@ public class PeopleController : WebApiController
0 commit comments