Click or drag to resize

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
Syntax
C#
public enum CallbackContext
Members
  Member nameValueDescription
CallerContext0 The callback should be called in the same context as the caller providing/registering the callback.
Parallel1 The callback should be called in parallel (if appropriate), usually in a separate thread.
Inline2 The callback should be called in the context of the object raising the event.
See Also