StaticSiteMapProvider.GetChildNodes Method
.NET Framework 3.0
Retrieves the child site map nodes of a specific SiteMapNode object.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public SiteMapNodeCollection GetChildNodes ( SiteMapNode node )
public override function GetChildNodes ( node : SiteMapNode ) : SiteMapNodeCollection
Not applicable.
Parameters
- node
The SiteMapNode for which to retrieve all child site map nodes.
Return Value
A read-only SiteMapNodeCollection that contains the child site map nodes of node. If security trimming is enabled, the collection contains only site map nodes that the user is permitted to see.The SiteMapNode objects delegate to the site map provider to keep track of their child and parent site map nodes. As a result, classes that implement a site map provider for a hierarchical site map structure, such as StaticSiteMapProvider, and use SiteMapNode objects to represent site map nodes, must track the hierarchical relationships of all site map nodes in order to be able to navigate an entire hierarchical tree.
The GetChildNodes method calls the BuildSiteMap method internally to retrieve read-only SiteMapNodeCollection collection of site map nodes that are relative to the specified site map node and relevant to the current user.
Community Additions
ADD
Show: