HierarchyInfo.Properties Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
.