Class ProviderNotificationMessage
Notification message used in INotificationProvider. This class supports the EPiServer infrastructure and is not intended to be used directly from your code.
Inheritance
System.Object
ProviderNotificationMessage
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Notification
Assembly: EPiServer.dll
Version: 8.11.0Syntax
public class ProviderNotificationMessage
Constructors
ProviderNotificationMessage()
Declaration
public ProviderNotificationMessage()
Properties
Content
The content of the message
Declaration
public string Content { get; }
Property Value
Type | Description |
---|---|
System.String |
Format
The format of the message.
Declaration
public NotificationFormat Format { get; }
Property Value
Type | Description |
---|---|
NotificationFormat |
RecipientAddresses
The address(es) to the receiver(s) of the message.
Declaration
public IEnumerable<string> RecipientAddresses { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.String> |
SenderAddress
The address to the sender of the message.
Declaration
public string SenderAddress { get; }
Property Value
Type | Description |
---|---|
System.String |
Subject
The subject of the message
Declaration
public string Subject { get; }
Property Value
Type | Description |
---|---|
System.String |