Exemplo n.º 1
0
 public virtual void OnViewNotFound(
     IProxyActionContext actionContext,
     bool isMainPage,
     IProxyActionResult result,
     string viewName,
     IEnumerable <string> searchedLocations)
 {
     ViewNotFound = new OnViewNotFoundEventData()
     {
         ActionContext     = actionContext,
         IsMainPage        = isMainPage,
         Result            = result,
         ViewName          = viewName,
         SearchedLocations = searchedLocations,
     };
 }
Exemplo n.º 2
0
 public virtual void OnViewNotFound(
     IProxyActionContext actionContext,
     bool isPartial,
     IProxyActionResult result,
     string viewName,
     IEnumerable<string> searchedLocations)
 {
     ViewNotFound = new OnViewNotFoundEventData()
     {
         ActionContext = actionContext,
         IsPartial = isPartial,
         Result = result,
         ViewName = viewName,
         SearchedLocations = searchedLocations,
     };
 }