Interface IHierarchicalObject
Interface for the hierarchically accessible object. This object provides the properties to access its connected objects.
public interface IHierarchicalObject : INameIndexable
- Inherited Members
- Extension Methods
Properties
Properties
Properties of the object available through GetProperty.
List<string> Properties { get; }
Property Value
- List<string>
Methods
GetProperty(string)
Returns property with given name (either object or property value).
object GetProperty(string columnName)
Parameters
columnName
stringColumn name
Returns
- object
TryGetProperty(string, out object)
Returns property with given name (either object or property value).
bool TryGetProperty(string columnName, out object value)
Parameters
columnName
stringColumn name
value
objectReturns the value
Returns
- bool
Returns true if the operation was successful (the value was present)