Class PushMessageEventArgs
Definition
- Assembly:
- Tizen.Messaging.Push.dll
An extended EventArgs class, which contains the message received.
public class PushMessageEventArgs : EventArgs
- Inheritance
-
objectSystem.EventArgsPushMessageEventArgs
Properties
View SourceAppData
Gives the Application Data recieved.
Declaration
public string AppData { get; }
Property Value
Type | Description |
---|---|
string | It is the string, which stores the application data. |
Message
Gives the Message Received Field.
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
string | It is the string, which stores the message field. |
ReceivedAt
Gives the time at which the Notification was received.
Declaration
public DateTime ReceivedAt { get; }
Property Value
Type | Description |
---|---|
System.DateTime | It is the DateTime field representing the time at which the Notification was received. |
RequestId
Gives the request ID of the notification.
Declaration
public string RequestId { get; }
Property Value
Type | Description |
---|---|
string | It is a string value representing the request ID of the Notification. |
Sender
Gives the Sender of the notification.
Declaration
public string Sender { get; }
Property Value
Type | Description |
---|---|
string | It is a string value representing the Sender of the Notification. |
SessionInfo
Gives the session ID of the notification.
Declaration
public string SessionInfo { get; }
Property Value
Type | Description |
---|---|
string | It is a string value representing the session ID of the Notification. |
Type
Gives the value in the type field of the notification.
Declaration
public int Type { get; }
Property Value
Type | Description |
---|---|
int | It is an integer value representing the type field of the notification. |