Show / Hide Table of Contents

Class AN_NotificationRequest

Inheritance
System.Object
AN_NotificationRequest
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SA.Android.App
Assembly: cs.temp.dll.dll
Syntax
public class AN_NotificationRequest

Constructors

AN_NotificationRequest(Int32, AN_NotificationCompat.Builder, AN_AlarmNotificationTrigger)

Creates and returns a local notification request object.

Declaration
public AN_NotificationRequest(int identifier, AN_NotificationCompat.Builder content, AN_AlarmNotificationTrigger trigger)
Parameters
Type Name Description
System.Int32 identifier

An identifier for the request; this parameter must not be null. You can use this identifier to cancel the request if it is still pending.

AN_NotificationCompat.Builder content

The content of the notification. This parameter must not be null.

AN_AlarmNotificationTrigger trigger

The condition that causes the notification to be delivered. Specify null to deliver the notification right away.

Properties

Content

The content associated with the notification.

Use this property to access the contents of the notification. The content object contains the badge information, sound to be played, or alert text to be displayed to the user, in addition to the notification’s thread identifier.

Declaration
public AN_NotificationCompat.Builder Content { get; }
Property Value
Type Description
AN_NotificationCompat.Builder

Identifier

The unique identifier for this notification request.

Declaration
public int Identifier { get; }
Property Value
Type Description
System.Int32

Trigger

The conditions that trigger the delivery of the notification.

For notifications that have already been delivered, use this property to determine what caused the delivery to occur.

Declaration
public AN_AlarmNotificationTrigger Trigger { get; }
Property Value
Type Description
AN_AlarmNotificationTrigger
In This Article
Back to top Generated by DocFX