CAPS.Notifications.Web.NotificationSender.AddNotification C# (CSharp) Method

AddNotification() public static method

public static AddNotification ( string id, string username, string title, string text, string image, string url ) : void
id string
username string
title string
text string
image string
url string
return void
        public static void AddNotification(string id, string username, string title, string text, string image, string url)
        {
            var context = GlobalHost.ConnectionManager.GetHubContext<NotificationMessageHub>();
            context.Clients.Group("User-" + username).addNotification(id, title, text, image, url);
        }
NotificationSender