CallbackContext Enumeration |
Defines the context in which a callback should be called.
Namespace:
Demo3D.Net
Assembly:
Demo3D.IO (in Demo3D.IO.dll) Version: 15.0.2.11458
Syntaxpublic enum CallbackContext
Members|
| Member name | Value | Description |
|---|
| CallerContext | 0 |
The callback should be called in the same context as the caller providing/registering the callback.
|
| Parallel | 1 |
The callback should be called in parallel (if appropriate), usually in a separate thread.
|
| Inline | 2 |
The callback should be called in the context of the object raising the event.
|
See Also