Class NotificationMessage
A Notification message that can be sent between users. This class supports the EPiServer infrastructure and is not intended to be used directly from your code.
Inheritance
System.Object
NotificationMessage
Namespace: EPiServer.Notification
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class NotificationMessage : Object
Constructors
NotificationMessage()
Declaration
public NotificationMessage()
Properties
Category
The category of the message.
Declaration
public Uri Category { get; set; }
Property Value
Type | Description |
---|---|
System. |
ChannelName
The name of the channel for the name.
Declaration
public string ChannelName { get; set; }
Property Value
Type | Description |
---|---|
System. |
Remarks
It is the Channel
Content
The content of the message
Declaration
public string Content { get; set; }
Property Value
Type | Description |
---|---|
System. |
ID
The ID of the message.
Declaration
public int ID { get; set; }
Property Value
Type | Description |
---|---|
System. |
Remarks
Will be 0 if the message haven't been saved
Recipients
The receivers for the message
Declaration
public IEnumerable<INotificationUser> Recipients { get; set; }
Property Value
Type | Description |
---|---|
System. |
Sender
The sender of the message
Declaration
public INotificationUser Sender { get; set; }
Property Value
Type | Description |
---|---|
INotification |
Subject
The message subject
Declaration
public string Subject { get; set; }
Property Value
Type | Description |
---|---|
System. |
TypeName
The type of the message.
Declaration
public string TypeName { get; set; }
Property Value
Type | Description |
---|---|
System. |