Skip to content
Snippets Groups Projects
DistributedNodesUpdatedEvent.cs 562 B
Newer Older
  • Learn to ignore specific revisions
  • using MasterDevs.ChromeDevTools;
    
    namespace MasterDevs.ChromeDevTools.Protocol.DOM
    {
    	/// <summary>
    	/// Called when distrubution is changed.
    	/// </summary>
    	[Event(ProtocolName.DOM.DistributedNodesUpdated)]
    	public class DistributedNodesUpdatedEvent
    	{
    		/// <summary>
    		/// Gets or sets Insertion point where distrubuted nodes were updated.
    		/// </summary>
    		public long InsertionPointId { get; set; }
    		/// <summary>
    		/// Gets or sets Distributed nodes for given insertion point.
    		/// </summary>
    		public BackendNode[] DistributedNodes { get; set; }
    	}
    }