Class GeoObjectNode
This class represent the model of an object.
public class GeoObjectNode
- Inheritance
-
GeoObjectNode
- Inherited Members
Constructors
GeoObjectNode()
Creates an instance of GeoObjectNode.
public GeoObjectNode()
GeoObjectNode(string)
Creates an instance of GeoObjectNode with a name.
public GeoObjectNode(string name)
Parameters
name
stringThe name of this node.
Properties
Attributes
Gets the Attribute of the node.
public Dictionary<string, string> Attributes { get; }
Property Value
Children
Gets the Children of the node.
public Collection<GeoObjectNode> Children { get; }
Property Value
IsDefaultValue
Gets or sets the IsDefaultValue of the node.
public bool IsDefaultValue { get; set; }
Property Value
Name
Gets or sets the Name of the node.
public string Name { get; set; }
Property Value
Parent
Gets or sets the Parent of the node.
public GeoObjectNode Parent { get; set; }
Property Value
Value
Gets or sets the Value of the node.
public string Value { get; set; }
Property Value
Methods
ToString()
Returns a string that contains the name, children count and attribute count of this node.
public override string ToString()
Returns
- string
The string that contains the name, children count and attribute count of this node.