SaaS CMS has officially launched! Learn more now.

Class UserNotificationsQuery

Class used for querying

Inheritance
System.Object
UserNotificationsQuery
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: 11.20.7
Syntax
public class UserNotificationsQuery

Constructors

UserNotificationsQuery()

Declaration
public UserNotificationsQuery()

Properties

Category

The Category

Declaration
public Uri Category { get; set; }
Property Value
Type Description
System.Uri

ChannelName

The name of the channel.

Declaration
public string ChannelName { get; set; }
Property Value
Type Description
System.String

Read

Filter(read/unread) the list based on true(read), false(unread) or null(both).

Declaration
public bool? Read { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Sent

Filter(sent/unsent) the list based on true(sent), false(unsent) or null(both).

Declaration
public bool? Sent { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

User

The user/recipient.

Declaration
public INotificationUser User { get; set; }
Property Value
Type Description
INotificationUser

Extension Methods