Class PushMessageEventArgs

Definition

Namespace:
Tizen.Messaging.Push
Assembly:
Tizen.Messaging.Push.dll

An extended EventArgs class, which contains the message received.

C#
Copy
public class PushMessageEventArgs : EventArgs
Inheritance
object
System.EventArgs
PushMessageEventArgs

Properties

View Source

AppData

Gives the Application Data recieved.

Declaration
C#
Copy
public string AppData { get; }
Property Value
Type Description
string

It is the string, which stores the application data.

View Source

Message

Gives the Message Received Field.

Declaration
C#
Copy
public string Message { get; }
Property Value
Type Description
string

It is the string, which stores the message field.

View Source

ReceivedAt

Gives the time at which the Notification was received.

Declaration
C#
Copy
public DateTime ReceivedAt { get; }
Property Value
Type Description
System.DateTime

It is the DateTime field representing the time at which the Notification was received.

View Source

RequestId

Gives the request ID of the notification.

Declaration
C#
Copy
public string RequestId { get; }
Property Value
Type Description
string

It is a string value representing the request ID of the Notification.

View Source

Sender

Gives the Sender of the notification.

Declaration
C#
Copy
public string Sender { get; }
Property Value
Type Description
string

It is a string value representing the Sender of the Notification.

View Source

SessionInfo

Gives the session ID of the notification.

Declaration
C#
Copy
public string SessionInfo { get; }
Property Value
Type Description
string

It is a string value representing the session ID of the Notification.

View Source

Type

Gives the value in the type field of the notification.

Declaration
C#
Copy
public int Type { get; }
Property Value
Type Description
int

It is an integer value representing the type field of the notification.