We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6f881d commit a5c054cCopy full SHA for a5c054c
1 file changed
README.md
@@ -8,6 +8,9 @@ Clients (for example MVC Web Application Hosting) and at the same time may
8
client can be a Browser (User-Agent) then you can manage your connections and domain data transfer
9
operations with same interfaces.
10
11
+[Latest release on Nuget]("https://www.nuget.org/packages/NetCoreStack.WebSockets/")
12
+
13
14
### Usage for API - Service Layer
15
16
#### Startup ConfigureServices
@@ -58,8 +61,12 @@ services.AddMvc();
58
61
```csharp
59
62
// Proxy (Domain App) Client WebSocket - DMZ to API side connections
60
63
app.UseProxyWebSockets();
64
65
// User Agent WebSockets for Browsers
66
app.UseNativeWebSockets();
67
68
+// Use MVC
69
+app.UseMvc();
70
```
71
72
#### Invocator With Dependency Injection on Clients
0 commit comments