CefRuntime ExecuteProcess Method (CefMainArgs, CefApp, IntPtr)Xilium.CefGlue

[This is preliminary documentation and is subject to change.]

This function should be called from the application entry point function to execute a secondary process. It can be used to run secondary processes from the browser client executable (default behavior) or from a separate executable specified by the CefSettings.browser_subprocess_path value. If called for the browser process (identified by no "type" command-line value) it will return immediately with a value of -1. If called for a recognized secondary process it will block until the process should exit and then return the process exit code. The |application| parameter may be empty. The |windows_sandbox_info| parameter is only used on Windows and may be NULL (see cef_sandbox_win.h for details).

Namespace: Xilium.CefGlue
Assembly: Xilium.CefGlue (in Xilium.CefGlue.dll) Version: 3.2272.2035.0 (3.2272.2035.0)
Syntax

public static int ExecuteProcess(
	CefMainArgs args,
	CefApp application,
	IntPtr windowsSandboxInfo
)

Parameters

args
Type: Xilium.CefGlue CefMainArgs

[Missing <param name="args"/> documentation for "M:Xilium.CefGlue.CefRuntime.ExecuteProcess(Xilium.CefGlue.CefMainArgs,Xilium.CefGlue.CefApp,System.IntPtr)"]

application
Type: Xilium.CefGlue CefApp

[Missing <param name="application"/> documentation for "M:Xilium.CefGlue.CefRuntime.ExecuteProcess(Xilium.CefGlue.CefMainArgs,Xilium.CefGlue.CefApp,System.IntPtr)"]

windowsSandboxInfo
Type: OnlineSystem IntPtr

[Missing <param name="windowsSandboxInfo"/> documentation for "M:Xilium.CefGlue.CefRuntime.ExecuteProcess(Xilium.CefGlue.CefMainArgs,Xilium.CefGlue.CefApp,System.IntPtr)"]

Return Value

Type: OnlineInt32

[Missing <returns> documentation for "M:Xilium.CefGlue.CefRuntime.ExecuteProcess(Xilium.CefGlue.CefMainArgs,Xilium.CefGlue.CefApp,System.IntPtr)"]

See Also