Interface INotifier
  
  Class for sending NotificationMessages
Assembly: EPiServer.dll
  Version: 12.0.3
  Syntax
  
    public interface INotifier
   
  Methods
  
  
  
  
  add_NotificationFiltered(AsyncEventHandler<NotificationEventArgs>)
  
  
  Declaration
  
    void add_NotificationFiltered(AsyncEventHandler<NotificationEventArgs> value)
   
  Parameters
  
  
  
  
  add_NotificationPosted(AsyncEventHandler<NotificationEventArgs>)
  
  
  Declaration
  
    void add_NotificationPosted(AsyncEventHandler<NotificationEventArgs> value)
   
  Parameters
  
  
  
  
  add_NotificationSaved(AsyncEventHandler<NotificationEventArgs>)
  
  
  Declaration
  
    void add_NotificationSaved(AsyncEventHandler<NotificationEventArgs> value)
   
  Parameters
  
  
  
  
  PostNotificationAsync(NotificationMessage)
  
  
  Declaration
  
    Task PostNotificationAsync(NotificationMessage notification)
   
  Parameters
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | System.Threading.Tasks.Task |  | 
    
  
  
  
  
  
  
  remove_NotificationFiltered(AsyncEventHandler<NotificationEventArgs>)
  
  
  Declaration
  
    void remove_NotificationFiltered(AsyncEventHandler<NotificationEventArgs> value)
   
  Parameters
  
  
  
  
  remove_NotificationPosted(AsyncEventHandler<NotificationEventArgs>)
  
  
  Declaration
  
    void remove_NotificationPosted(AsyncEventHandler<NotificationEventArgs> value)
   
  Parameters
  
  
  
  
  remove_NotificationSaved(AsyncEventHandler<NotificationEventArgs>)
  
  
  Declaration
  
    void remove_NotificationSaved(AsyncEventHandler<NotificationEventArgs> value)
   
  Parameters
  
  Events
  
  
  
  NotificationFiltered
  Occurs when a message is filtered.
Declaration
  
    event AsyncEventHandler<NotificationEventArgs> NotificationFiltered
   
  Event Type
  
  
  
  NotificationPosted
  Occurs when a message is notified.
Declaration
  
    event AsyncEventHandler<NotificationEventArgs> NotificationPosted
   
  Event Type
  
  
  
  NotificationSaved
  Occurs when a message is saved.
Declaration
  
    event AsyncEventHandler<NotificationEventArgs> NotificationSaved
   
  Event Type
  
  Extension Methods