Version 86.0.240 
            Managed enum for cef_thread_id_t/CefThreadId
            
 
    Namespace: 
   CefSharp
    Assembly:
   CefSharp (in CefSharp.dll) Version: 86.0.240.0 (86.0.240.0)
 Syntax
Syntaxpublic enum class CefThreadIds
 Members
Members|  | Member name | Value | Description | 
|---|
|  | TID_UI | 0 | The CEF UI thread in the browser. In CefSharp this is ALWAYS
            separate from the application's main thread (and thus the main 
            WinForm UI thread). | 
|  | TID_DB | 1 | Used to interact with the database. | 
|  | TID_FILE | 2 | Used to interact with the file system. | 
|  | TID_FILE_USER_BLOCKING | 3 | Used for file system operations that block user interactions.
            Responsiveness of this thread affects users. | 
|  | TID_PROCESS_LAUNCHER | 4 | Used to launch and terminate browser processes. | 
|  | TID_CACHE | 5 | Used to handle slow HTTP cache operations. | 
|  | TID_IO | 6 | Used to process IPC and network messages. | 
|  | TID_RENDERER | 7 | The main thread in the renderer. Used for all WebKit and V8 interaction. | 
 See Also
See Also