Class PushMessageEventArgs

Definition

Namespace:
Tizen.Messaging.Push
Assembly:
Tizen.Messaging.Push.dll
API Level:
3

An extended EventArgs class, which contains the message received.

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

Properties

View Source

AppData

Gives the Application Data recieved.

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

It is the string, which stores the application data.

API Level: 3
View Source

Message

Gives the Message Received Field.

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

It is the string, which stores the message field.

API Level: 3
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.

API Level: 3
View Source

RequestId

Gives the request ID of the notification.

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

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

API Level: 3
View Source

Sender

Gives the Sender of the notification.

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

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

API Level: 3
View Source

SessionInfo

Gives the session ID of the notification.

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

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

API Level: 3
View Source

Type

Gives the value in the type field of the notification.

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

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

API Level: 3