Class GetNodeForLocationCommandResponse
Response for Returns node id at given location. Depending on whether DOM domain is enabled, nodeId is either returned or not.
public sealed class GetNodeForLocationCommandResponse : ICommandResponse<GetNodeForLocationCommandSettings>, ICommandResponse
- Inheritance
-
GetNodeForLocationCommandResponse
- Implements
- Inherited Members
- Extension Methods
Properties
BackendNodeId
Resulting node.
[JsonPropertyName("backendNodeId")]
public long BackendNodeId { get; set; }
Property Value
FrameId
Frame this node belongs to.
[JsonPropertyName("frameId")]
public string FrameId { get; set; }
Property Value
NodeId
Id of the node at given coordinates, only when enabled and requested document.
[JsonPropertyName("nodeId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? NodeId { get; set; }
Property Value
- long?