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: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
protected abstract bool OnRequestGeolocationPermission(
	CefBrowser browser,
	string requestingUrl,
	int requestId,
	CefGeolocationCallback callback
)

Parameters

browser  CefBrowser
 
requestingUrl  String
 
requestId  Int32
 
callback  CefGeolocationCallback
 

Return Value

Boolean
See Also