Version 55.0.0
Managed enum for cef_thread_id_t/CefThreadId
Namespace: CefSharpAssembly: CefSharp (in CefSharp.dll) Version: 55.0.0.0 (55.0.0.0)
Syntax public enum class CefThreadIds
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