SaaS CMS has officially launched! Learn more now.

Interface INotificationPreferenceRegister

Signature for a component that can be used to register a default preference resolver.

Namespace: EPiServer.Notification
Assembly: EPiServer.dll
Version: 11.20.7
Syntax
public interface INotificationPreferenceRegister

Methods

RegisterDefaultPreference(String, String, Func<String, String>)

Register a default preference resolver for a channel and a provider.

Declaration
void RegisterDefaultPreference(string channelName, string providerName, Func<string, string> addressResolver)
Parameters
Type Name Description
System.String channelName

The channel

System.String providerName

the provider

System.Func<System.String, System.String> addressResolver

a delegate that resolves a provider specific address from a username

Extension Methods