Enum ThreadModeEnum
Enumeration of the thread modes
public enum ThreadModeEnum
- Extension Methods
Fields
Async = 1Asynchronous execution within thread newly created from CMSThread or request. Ensures the new thread proper context.
Sync = 2Synchronous execution within existing CMSThread or request. Keeps the execution context of current thread.
Wrapper = 3Synchronous execution within existing anonymous thread. Ensures the anonymous thread proper context as it was a CMSThread.