Interface INotificationChannelOptionsRegistry
Registry for options used to control how notifications within a specific Channel
Namespace: EPiServer.Notification
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public interface INotificationChannelOptionsRegistry
Methods
Add(String, NotificationChannelOptions)
Add or register an option for channel name
Declaration
void Add(string channelName, NotificationChannelOptions options)
Parameters
Type | Name | Description |
---|---|---|
System. |
channelName | The channel name |
Notification |
options | Notification options |
Get(String)
Get the Notification
Declaration
NotificationChannelOptions Get(string channelName)
Parameters
Type | Name | Description |
---|---|---|
System. |
channelName | The channel name |
Returns
Type | Description |
---|---|
Notification |
Notification option |
Remove(String)
Remove or Unregister the option for the channel name
Declaration
void Remove(string channelName)
Parameters
Type | Name | Description |
---|---|---|
System. |
channelName | The channel name |