Class AN_NotificationRequest
Inheritance
Inherited Members
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 |
AN_NotificationCompat.Builder | content | The content of the notification. This parameter must not be |
AN_AlarmNotificationTrigger | trigger | The condition that causes the notification to be delivered. Specify |
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 |