CFRunLoopExitReason Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The reason for a CFRunLoop to stop running.
public enum CFRunLoopExitReason
type CFRunLoopExitReason =
- Inheritance
-
CFRunLoopExitReason
Fields
Name | Value | Description |
---|---|---|
Finished | 1 | The run loop terminated. |
Stopped | 2 | The run loop was stopped by a call to the Stop() method. |
TimedOut | 3 | The number of seconds specified in the call to RunInMode(NSString, Double, Boolean) elapsed. |
HandledSource | 4 | An event from a source was handled, and the developer specified that a single source should be processed on the call to RunInMode(NSString, Double, Boolean) |