Class EventResponseArgs
Configures how to simulate events that interrupt the application flow on the device, such as an incoming call or SMS.
public class EventResponseArgs
- Inheritance
-
EventResponseArgs
- Inherited Members
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).
public EventResponseArgs()
Properties
RespondToEvent
Indicates whether there is a response to the simulated event. Default = false
public bool RespondToEvent { get; set; }
Property Value
TimeInBackground
The time (in seconds) that the application remains in the background while the event is being handled. Default = 10
public int TimeInBackground { get; set; }