Class INotificationProviderExtensions
Signature for a component that can send Notification
Inheritance
System.Object
INotificationProviderExtensions
Namespace: EPiServer.Notification
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public static class INotificationProviderExtensions : Object
Methods
SendAsync(INotificationProvider, IEnumerable<ProviderNotificationMessage>, Action<ProviderNotificationMessage>, Action<ProviderNotificationMessage, Exception>)
Sends the formatted messages.
Declaration
public static Task SendAsync(this INotificationProvider provider, IEnumerable<ProviderNotificationMessage> messages, Action<ProviderNotificationMessage> succeededAction, Action<ProviderNotificationMessage, Exception> failedAction)
Parameters
Type | Name | Description |
---|---|---|
INotification |
provider | The notification provider. |
System. |
messages | The messages to send. |
System. |
succeededAction | A success action that should be called for successfully sent messages. |
System. |
failedAction | A failure action that should be called when a message send operation fails. |
Returns
Type | Description |
---|---|
System. |