From e69d54b6897d9f4f69f8a71e39f6418dda626017 Mon Sep 17 00:00:00 2001 From: Alper Ebicoglu Date: Mon, 15 Mar 2021 12:10:36 +0300 Subject: [PATCH] Update POST.md --- .../2021-03-12-Simple-SignalR-Notification/POST.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/en/Community-Articles/2021-03-12-Simple-SignalR-Notification/POST.md b/docs/en/Community-Articles/2021-03-12-Simple-SignalR-Notification/POST.md index 12a2c9ffdf..519a09fa42 100644 --- a/docs/en/Community-Articles/2021-03-12-Simple-SignalR-Notification/POST.md +++ b/docs/en/Community-Articles/2021-03-12-Simple-SignalR-Notification/POST.md @@ -1,6 +1,7 @@ # Send Real-time Notifications via SignalR in ABP Project SignalR is an open source library that adds real-time operation functionality to applications. Real-time web functionality enables server-side code to instantly send content to clients without refreshing the page. I'll show you how to add SignalR and use it to send notifications from backend. I'll implement this functionality in MVC template of ABP Framework. + ![signalr-architecture](signalr-architecture.png) ## Implement Backend @@ -94,4 +95,4 @@ To do this easily, open your `Index.cshtml` which is in the Pages folder of your Run your web project and in the Index page you'll see a button named as "Get Notification". Click the button and see the notification that comes from SignalR. This is a basic usage of SignalR notification system. You can implement it according to your own requirements. -![Result](result.jpg) \ No newline at end of file +![Result](result.jpg)