SiteMapNode::ParentNode Property

 

Gets or sets the SiteMapNode object that is the parent of the current node.

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

public:
property SiteMapNode^ ParentNode {
	virtual SiteMapNode^ get();
	virtual void set(SiteMapNode^ value);
}

Property Value

Type: System.Web::SiteMapNode^

The parent SiteMapNode; otherwise, null, if security trimming is enabled and the user cannot view the parent node.

Exception Condition
InvalidOperationException

The node is read-only.

The SiteMapNode class relies on the site map provider with which it is associated to track its relationships to other nodes in the site map. The ParentNode property calls the GetParentNode method, passing a reference to itself, to retrieve the parent SiteMapNode.

.NET Framework
Available since 2.0
Return to top
Show: