SiteMapNode.NextSibling 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.
Gets the next SiteMapNode node on the same hierarchical level as the current one, relative to the ParentNode property (if one exists).
public:
virtual property System::Web::SiteMapNode ^ NextSibling { System::Web::SiteMapNode ^ get(); };
public virtual System.Web.SiteMapNode NextSibling { get; }
member this.NextSibling : System.Web.SiteMapNode
Public Overridable ReadOnly Property NextSibling As SiteMapNode
Property Value
The next SiteMapNode, serially, after the current one, under the parent node; otherwise, null
, 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.
Remarks
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.
Applies to
See also
.NET