Skip to content
Snippets Groups Projects
PushNodeByPathToFrontendCommandResponse.cs 501 B
Newer Older
  • Learn to ignore specific revisions
  • using MasterDevs.ChromeDevTools;
    using Newtonsoft.Json;
    using System.Collections.Generic;
    
    namespace MasterDevs.ChromeDevTools.Protocol.DOM
    {
    	/// <summary>
    	/// Requests that the node is sent to the caller given its path. // FIXME, use XPath
    	/// </summary>
    	[CommandResponse(ProtocolName.DOM.PushNodeByPathToFrontend)]
    	public class PushNodeByPathToFrontendCommandResponse
    	{
    		/// <summary>
    		/// Gets or sets Id of the node for given path.
    		/// </summary>
    		public long NodeId { get; set; }
    	}
    }