Click or drag to resize

CefThreadIds Enumeration

Version 75.1.140
Managed enum for cef_thread_id_t/CefThreadId

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 75.1.140.0 (75.1.140.0)
Syntax
public enum CefThreadIds
Members
  Member nameValueDescription
TID_UI0 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_DB1 Used to interact with the database.
TID_FILE2 Used to interact with the file system.
TID_FILE_USER_BLOCKING3 Used for file system operations that block user interactions. Responsiveness of this thread affects users.
TID_PROCESS_LAUNCHER4 Used to launch and terminate browser processes.
TID_CACHE5 Used to handle slow HTTP cache operations.
TID_IO6 Used to process IPC and network messages.
TID_RENDERER7 The main thread in the renderer. Used for all WebKit and V8 interaction.
See Also