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

NotifyAsync() public static method

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

Same methods

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