SiteMapProvider.SiteMapResolve Event

Definition

Occurs when the CurrentNode property is called.

C#
public event System.Web.SiteMapResolveEventHandler SiteMapResolve;

Event Type

Remarks

You can create a SiteMapNode representation of the currently requested page without implementing a custom site map provider by subscribing to the SiteMapResolve event. Subscribers attach a SiteMapResolveEventHandler object to receive notification when the CurrentNode property is called and can return a custom SiteMapNode object instead of the default one that is returned by the CurrentNode property.

For more information about how to handle events, see Handling and Raising Events.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also