SiteMapNode.NextSibling Property

Gets the next SiteMapNode node on the same hierarchical level as the current one, relative to the ParentNode property (if one exists).

Namespace: System.Web
Assembly: System.Web (in system.web.dll)

public:
virtual property SiteMapNode^ NextSibling {
	SiteMapNode^ get ();
}
/** @property */
public SiteMapNode get_NextSibling ()

public function get NextSibling () : SiteMapNode

Not applicable.

Property Value

The next SiteMapNode, serially, after the current one, under the parent node; otherwise, a null reference (Nothing in Visual Basic), if no parent exists, there is no node that follows this one, or security trimming is enabled and the user cannot view the parent or next sibling nodes.

The NextSibling property presumes that the SiteMapProvider object implements its internal collections such that when a parent node retrieves its ChildNodes property, the nodes are in the same order as they appear in the site map. If you use .NET Framework collection classes in an implementation of a site map provider, choose collections that implement the IList interface, such as the ArrayList or ListDictionary classes. If you choose collections that do not implement the IList interface, such as the Hashtable class, unexpected results can occur for simple site navigation operations.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: