Hi,
Ater upgrading to 9.6.7 my override ProcessTree is no longer executed.
My code has run for a long period and is build like the example here https://doc.dynamicweb.com/api/html/23c6c4ec-0320-a8a7-0d56-2795771b546b.htm
But after upgrading from 9.3.12 to the latest 9.6.7. my public override void ProcessTree(RootNavigationItem rootNode, XmlNavigation.NavigationType navigationType) is ignored, I have a breakpoint just before the ProcessTree a its hit, but the ProcessTree method is never hit or executed.
public class MenuProvider : NavigationProvider
{
string test = string.Empty; //TEST BREAKPOINT IS HIT
public override void ProcessTree(RootNavigationItem rootNode, XmlNavigation.NavigationType navigationType) //THIS IS IGNORED
{
HttpRequest request = HttpContext.Current.Request;
foreach (NavigationItem node in rootNode.ChildNodes)
What has changed in Dynamicweb.Frontend.NavigationProviders ?
BR
Kim