Class RequestEventArgs
Definition
- Namespace:
- Tizen.Applications.ComponentBased
- Assembly:
- Tizen.Applications.ComponentBased.Port.dll
Arguments for the event raised when the request is received.
public class RequestEventArgs : EventArgs
- Inheritance
-
objectSystem.EventArgsRequestEventArgs
Properties
View SourceIsReplyRequested
The flag indicating whether the reply is requested or not.
Declaration
public bool IsReplyRequested { get; }
Property Value
Type | Description |
---|---|
bool |
Reply
The serialized reply data.
Declaration
public object Reply { get; set; }
Property Value
Type | Description |
---|---|
object |
Request
The received serialized data.
Declaration
public object Request { get; }
Property Value
Type | Description |
---|---|
object |
Sender
The name of the sender port
Declaration
public string Sender { get; }
Property Value
Type | Description |
---|---|
string |