Class SetChildNodesEventArgs
Fired when backend wants to provide client with the missing DOM structure. This happens upon most of the calls requesting node ids.
public sealed class SetChildNodesEventArgs : EventArgs
- Inheritance
-
SetChildNodesEventArgs
- Inherited Members
Properties
Nodes
Child nodes array.
[JsonPropertyName("nodes")]
public Node[] Nodes { get; set; }
Property Value
- Node[]
ParentId
Parent node id to populate with children.
[JsonPropertyName("parentId")]
public long ParentId { get; set; }