WebView.WebViewRenderProcess Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a handle to the WebView renderer process associated with this WebView.
public virtual Android.Webkit.WebViewRenderProcess? WebViewRenderProcess { [Android.Runtime.Register("getWebViewRenderProcess", "()Landroid/webkit/WebViewRenderProcess;", "GetGetWebViewRenderProcessHandler", ApiSince=29)] get; }
[<get: Android.Runtime.Register("getWebViewRenderProcess", "()Landroid/webkit/WebViewRenderProcess;", "GetGetWebViewRenderProcessHandler", ApiSince=29)>]
member this.WebViewRenderProcess : Android.Webkit.WebViewRenderProcess
Property Value
the WebViewRenderProcess
renderer handle associated
with this WebView
, or null
if
WebView is not runing in multiprocess mode.
- Attributes
Remarks
Gets a handle to the WebView renderer process associated with this WebView.
In android.os.Build.VERSION_CODES#O
and above, WebView may run in "multiprocess" mode. In multiprocess mode, rendering of web content is performed by a sandboxed renderer process separate to the application process. This renderer process may be shared with other WebViews in the application, but is not shared with other application processes.
If WebView is running in multiprocess mode, this method returns a handle to the renderer process associated with the WebView, which can be used to control the renderer process.
Java documentation for android.webkit.WebView.getWebViewRenderProcess()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.