HierarchyInfo.Properties Property

Definition

When overridden in a derived class, gets a dictionary of node-specific information.

public:
 virtual property System::Collections::IDictionary ^ Properties { System::Collections::IDictionary ^ get(); };
public virtual System.Collections.IDictionary Properties { get; }
member this.Properties : System.Collections.IDictionary
Public Overridable ReadOnly Property Properties As IDictionary

Property Value

A IDictionary interface that contains node-specific information.

Examples

The following example implements the Properties property.

public override System.Collections.IDictionary Properties
{
    get
    {
        if (_dhDict == null)
        {
            _dhDict = new Dictionary<string, string>();
        }

        return _dhDict;
    }
}

Remarks

When not overridden, this property returns null.

Applies to