Class EventResponseArgs
Configures how to simulate events that interrupt the application flow on the device, such as an incoming call or SMS.
Inherited Members
Namespace: HP.LFT.SDK.Mobile
Assembly: HP.LFT.SDK.dll
Syntax
public class EventResponseArgs
Remarks
These simulated events can help you test that your application responds properly to the event itself and to state transitions. For example, you may want to verify that when an incoming SMS is received, your application is sent to the background for several seconds, and, when it returns to the foreground, the application is in an active state, ready to continue.
Constructors
EventResponseArgs()
Initializes a new instance of the EventResponseArgs class with default arguments (TimeInBackground = 10 seconds; RespondToEvent = false).
Declaration
public EventResponseArgs()
Properties
RespondToEvent
Indicates whether there is a response to the simulated event. Default = false
Declaration
public bool RespondToEvent { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
TimeInBackground
The time (in seconds) that the application remains in the background while the event is being handled. Default = 10
Declaration
public int TimeInBackground { get; set; }
Property Value
| Type | Description |
|---|---|
| int |