Hi,
We had a custom development that stopped working as of 9.9 because the args of the Application.AuthenticateRequestArgs have changed.
public override void OnNotify(string notification, NotificationArgs args)
    {
      var authArgs = (Dynamicweb.Notifications.Standard.Application.AuthenticateRequestArgs)args;
      var app = authArgs.Application;
      if (!string.IsNullOrEmpty(app.Request.AppRelativeCurrentExecutionFilePath) && (app.Request.AppRelativeCurrentExecutionFilePath.ToLower().Contains("stylesbundle")|| app.Request.AppRelativeCurrentExecutionFilePath.ToLower().Contains("scriptsbundle")))
      {
        authArgs.Handled = true;
      }
    }
The problem is that args.Application.Request no longer exists. Is there a recommended alternative?
Best Regards,
Nuno Aguiar
Is there a