Class UserNotificationsQuery

NOTE: This is a pre-release API that is UNSTABLE and might not satisfy the compatibility requirements as denoted by its associated normal version. 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: 9.12.2
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