Select Git revision
SetChildNodesEvent.cs
SetChildNodesEvent.cs 573 B
using MasterDevs.ChromeDevTools;
namespace MasterDevs.ChromeDevTools.Protocol.DOM
{
/// <summary>
/// Fired when backend wants to provide client with the missing DOM structure. This happens upon most of the calls requesting node ids.
/// </summary>
[Event(ProtocolName.DOM.SetChildNodes)]
public class SetChildNodesEvent
{
/// <summary>
/// Gets or sets Parent node id to populate with children.
/// </summary>
public long ParentId { get; set; }
/// <summary>
/// Gets or sets Child nodes array.
/// </summary>
public Node[] Nodes { get; set; }
}
}