System.Web.Mvc.ControllerExtensions.NotifyAllAsync C# (CSharp) Method

NotifyAllAsync() public static method

Submits a notification to all matching registered WebHooks across all users. To match, the WebHook must have a filter that matches one or more of the actions provided for the notification.
public static NotifyAllAsync ( this controller ) : Task
controller this The instance.
return Task
        public static Task<int> NotifyAllAsync(this Controller controller, params NotificationDictionary[] notifications)
        {
            return NotifyAllAsync(controller, notifications, predicate: null);
        }

Same methods

ControllerExtensions::NotifyAllAsync ( this controller, IEnumerable notifications, Func predicate ) : Task
ControllerExtensions::NotifyAllAsync ( this controller, string action, object data ) : Task
ControllerExtensions::NotifyAllAsync ( this controller, string action, object data, Func predicate ) : Task
ControllerExtensions