Click or drag to resize

CefGeolocationHandlerOnRequestGeolocationPermission Method

Called when a page requests permission to access geolocation information. |requesting_url| is the URL requesting permission and |request_id| is the unique ID for the permission request. Return true and call CefGeolocationCallback::Continue() either in this method or at a later time to continue or cancel the request. Return false to cancel the request immediately.

Namespace:  Internal.Xilium.CefGlue
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
protected abstract bool OnRequestGeolocationPermission(
	CefBrowser browser,
	string requestingUrl,
	int requestId,
	CefGeolocationCallback callback
)

Parameters

browser
Type: Internal.Xilium.CefGlueCefBrowser
requestingUrl
Type: SystemString
requestId
Type: SystemInt32
callback
Type: Internal.Xilium.CefGlueCefGeolocationCallback

Return Value

Type: Boolean
See Also