[This is preliminary documentation and is subject to change.]
The CefApp type exposes the following members.Methods
Name | Description | |
---|---|---|
Dispose | ||
Equals | (Inherited from Object.) | |
Finalize | (Overrides Object Finalize .) | |
GetBrowserProcessHandler |
Return the handler for functionality specific to the browser process. This
method is called on multiple threads in the browser process.
| |
GetHashCode |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
GetRenderProcessHandler |
Return the handler for render process events. This method is called by the
render process main thread.
| |
GetResourceBundleHandler |
Return the handler for resource bundle events. If
CefSettings.pack_loading_disabled is true a handler must be returned. If no
handler is returned resources will be loaded from pack files. This method
is called by the browser and renderer processes on multiple threads.
| |
GetType |
Gets the Type of the current instance.
(Inherited from Object.) | |
MemberwiseClone |
Creates a shallow copy of the current Object.
(Inherited from Object.) | |
OnBeforeCommandLineProcessing |
Provides an opportunity to view and/or modify command-line arguments before
processing by CEF and Chromium. The |process_type| value will be empty for
the browser process. Do not keep a reference to the CefCommandLine object
passed to this method. The CefSettings.command_line_args_disabled value
can be used to start with an empty command-line object. Any values
specified in CefSettings that equate to command-line arguments will be set
before this method is called. Be cautious when using this method to modify
command-line arguments for non-browser processes as this may result in
undefined behavior including crashes.
| |
OnRegisterCustomSchemes |
Provides an opportunity to register custom schemes. Do not keep a reference
to the |registrar| object. This method is called on the main thread for
each process and the registered schemes should be the same across all
processes.
| |
ToString | (Inherited from Object.) |
See Also