File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ Clients (for example MVC Web Application Hosting) and at the same time may
88client can be a Browser (User-Agent) then you can manage your connections and domain data transfer
99operations with same interfaces.
1010
11+ [ Latest release on Nuget] ( "https://www.nuget.org/packages/NetCoreStack.WebSockets/" )
12+
13+
1114### Usage for API - Service Layer
1215
1316#### Startup ConfigureServices
@@ -58,8 +61,12 @@ services.AddMvc();
5861``` csharp
5962// Proxy (Domain App) Client WebSocket - DMZ to API side connections
6063app .UseProxyWebSockets ();
64+
6165// User Agent WebSockets for Browsers
6266app .UseNativeWebSockets ();
67+
68+ // Use MVC
69+ app .UseMvc ();
6370```
6471
6572#### Invocator With Dependency Injection on Clients
You can’t perform that action at this time.
0 commit comments