File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 33This project is demonstrate bidirectional connections and data transfers from low level layer (secure zone) to
44Browsering - DMZ (Public) zone via .NET Core WebSockets.
55
6- You can use it on your API - Service side to communicate each other your trusted consumer
6+ You can use it on your API - Service side to communicate each other your trusted Backend API consumer
77Clients (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.
@@ -24,7 +24,8 @@ public MyController(IConnectionManager connectionManager)
2424{
2525 _connectionManager = connectionManager;
2626}
27-
27+ ```
28+ ```
2829[HttpPost(nameof(SendAsync))]
2930public async Task<IActionResult> SendAsync([FromBody]SimpleModel model)
3031{
You can’t perform that action at this time.
0 commit comments