SiteMapNode::ChildNodes Property
.NET Framework (current version)
Gets or sets all the child nodes of the current SiteMapNode object from the associated SiteMapProvider provider.
Assembly: System.Web (in System.Web.dll)
public: property SiteMapNodeCollection^ ChildNodes { virtual SiteMapNodeCollection^ get(); virtual void set(SiteMapNodeCollection^ value); }
Property Value
Type: System.Web::SiteMapNodeCollection^A read-only SiteMapNodeCollection of child nodes, if any exist for the current node; otherwise, null.
| Exception | Condition |
|---|---|
| InvalidOperationException | The node is read-only. |
The SiteMapNode relies on the SiteMapProvider that it is associated with to keep track of its relationships to other nodes in the site map. This property calls the GetChildNodes method, passing a reference to itself, to retrieve the SiteMapNodeCollection.
If security trimming is enabled, only nodes that the current user is permitted to see are returned. If the user is not permitted to see any child nodes, an empty collection is returned.
.NET Framework
Available since 2.0
Available since 2.0
Show: