Esempio n. 1
0
 public object Any(FallbackForClientRoutes request)
 {
     //Return default.cshtml for unmatched requests so routing is handled on the client
     return(new HttpResult
     {
         View = "/default.cshtml"
     });
 }
Esempio n. 2
0
 //Return index.html for unmatched requests so routing is handled on client
 public object Any(FallbackForClientRoutes request) =>
 new PageResult(Request.GetPage("/"));
Esempio n. 3
0
 //Return index.html for unmatched requests so routing is handled on client
 public object Any(FallbackForClientRoutes request) =>
 new HttpResult(VirtualFileSources.GetFile("index.html"));
Esempio n. 4
0
 public object Any(FallbackForClientRoutes request)
 {
     //Return default.html for unmatched requests so routing is handled on client
     return(new HttpResult(VirtualFileSources.GetFile("default.html")));
 }
Esempio n. 5
0
 public object Any(FallbackForClientRoutes request)
 {
     return(defaultHtml ??
            (defaultHtml = HostContext.ResolveVirtualFile("/default.html", Request).ReadAllText()));
 }