DataWeb
Search Results for

    Show / Hide Table of Contents

    Class AppNotification

    Represents a notification object in the application with relevant properties such as Id, user Id, context, type, raw notification values, a list of notification values, read status, read disabled status, forced view status, and notification date.

    Inheritance
    object
    AppNotification
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: DataWeb.Notification
    Assembly: DataWeb.Core.dll
    Syntax
    public class AppNotification

    Properties

    Context

    Gets or sets the context of the notification.

    Declaration
    public string Context { get; set; }
    Property Value
    Type Description
    string

    Id

    Gets or sets the unique identifier.

    Declaration
    public string Id { get; set; }
    Property Value
    Type Description
    string

    IsRead

    Gets or sets a value indicating whether the notification has been read or not.

    Declaration
    public bool IsRead { get; set; }
    Property Value
    Type Description
    bool

    IsReadDisabled

    Gets or sets a value indicating whether the notification has disabled read status.

    Declaration
    public bool IsReadDisabled { get; set; }
    Property Value
    Type Description
    bool

    IsViewForced

    Gets or sets a value indicating whether the notification view is forced.

    Declaration
    public bool IsViewForced { get; set; }
    Property Value
    Type Description
    bool

    NotificationDate

    Gets or sets the date and time when the notification was created.

    Declaration
    public DateTimeOffset NotificationDate { get; set; }
    Property Value
    Type Description
    DateTimeOffset

    NotificationValues

    Gets or sets a list of notification values.

    Declaration
    public List<AppNotificationValue> NotificationValues { get; set; }
    Property Value
    Type Description
    List<AppNotificationValue>

    RawNotificationValues

    Gets or sets the raw notification values.

    Declaration
    public string RawNotificationValues { get; set; }
    Property Value
    Type Description
    string

    ReferenceId

    Gets or sets the reference Id of the notification.

    Declaration
    public string ReferenceId { get; set; }
    Property Value
    Type Description
    string

    Type

    Gets or sets the type of the notification.

    Declaration
    public string Type { get; set; }
    Property Value
    Type Description
    string

    UserIdMaster

    Gets or sets the user Id of the notification.

    Declaration
    public string UserIdMaster { get; set; }
    Property Value
    Type Description
    string

    Extension Methods

    NotificationMapperExtension.ToAppNotificationInfo(AppNotification)
    In this article
    Back to top Generated by DocFX