SiteMapProvider.FindSiteMapNode Method (HttpContext)
.NET Framework 3.0
Retrieves a SiteMapNode object that represents the currently requested page using the specified HttpContext object.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public SiteMapNode FindSiteMapNode ( HttpContext context )
public function FindSiteMapNode ( context : HttpContext ) : SiteMapNode
Not applicable.
Parameters
- context
The HttpContext used to match node information with the URL of the requested page.
Return Value
A SiteMapNode that represents the currently requested page; otherwise, a null reference (Nothing in Visual Basic), if no corresponding SiteMapNode can be found in the SiteMapNode or if the page context is a null reference (Nothing in Visual Basic).The FindSiteMapNode method calls the abstract FindSiteMapNode method to retrieve a SiteMapNode object for the currently requested page based on the raw URL or the virtual path of the request. If no corresponding SiteMapNode is found in the SiteMap, a null reference (Nothing in Visual Basic) is returned.
The FindSiteMapNode method does not check whether a SiteMapNode is accessible to a user, by default.
Community Additions
ADD
Show: