| DOMClientGetNodeForLocationAsync Method  | 
Version 90.6.50 
            Returns node id at given location. Depending on whether DOM domain is enabled, nodeId is
            either returned or not.
            
 
    Namespace: 
   CefSharp.DevTools.DOM
    Assembly:
   CefSharp (in CefSharp.dll) Version: 90.6.50.0 (90.6.50.0)
 Syntax
Syntaxpublic Task<GetNodeForLocationResponse> GetNodeForLocationAsync(
	int x,
	int y,
	Nullable<bool> includeUserAgentShadowDOM = null,
	Nullable<bool> ignorePointerEventsNone = null
)
public:
Task<GetNodeForLocationResponse^>^ GetNodeForLocationAsync(
	int x, 
	int y, 
	Nullable<bool> includeUserAgentShadowDOM = nullptr, 
	Nullable<bool> ignorePointerEventsNone = nullptr
)
Parameters
- x
- Type: SystemInt32
 X coordinate.
- y
- Type: SystemInt32
 Y coordinate.
- includeUserAgentShadowDOM (Optional)
- Type: SystemNullableBoolean
 False to skip to the nearest non-UA shadow root ancestor (default: false).
- ignorePointerEventsNone (Optional)
- Type: SystemNullableBoolean
 Whether to ignore pointer-events: none on elements and hit test them.
Return Value
Type: 
TaskGetNodeForLocationResponsereturns System.Threading.Tasks.Task<GetNodeForLocationResponse>
 See Also
See Also