Table of Contents

Interface IHierarchicalObject

Namespace
CMS.Base
Assembly
CMS.Base.dll

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 string

Column 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 string

Column name

value object

Returns the value

Returns

bool

Returns true if the operation was successful (the value was present)