関連するスレッドを何十も読み、サンプルから非常に単純な仮想プロバイダーを作成しました。
ただし、仮想ファイル ストリームはレンダリングされません。計画テキストを表示するだけです。
これが出力です。
@inherits System.Web.Mvc.WebViewPage
@{ViewBag.Title = "Hellow World !";}
<h2>Hellow World !</h2>
これに関する関連スレッドがありますが、どのように解決したか、または解決策が機能しないとは言っていません。何が間違っていたのかわかりません。
- VirtualPathProvider がかみそりのマークアップを解析していない
- MVC3 カスタム VirtualPathProvider が Razor をレンダリングしない
- ファイルではなくデータベースからビューをプルする
- エリアを使用するときに MVC3 で共有ビューへのルートを指定する方法
- ASP.NET MVC データベースからの Razor ビューの読み込み
- クラス ライブラリ プロジェクトからビューを読み込む方法は?
他にもたくさんあります...
どうしたの ?
これが私のテストコードです。(Global.asax を変更しただけです。)
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
System.Web.Hosting.HostingEnvironment.RegisterVirtualPathProvider(
new MyProvider());
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
AuthConfig.RegisterAuth();
}
}
public class MyProvider : VirtualPathProvider
{
public override bool FileExists(string virtualPath)
{
if (Previous.FileExists(virtualPath))
return true;
else
// ~/Infra is the test url
return virtualPath.StartsWith("/Infra") || virtualPath.StartsWith("~/Infra");
}
public override VirtualFile GetFile(string virtualPath)
{
if (Previous.FileExists(virtualPath))
return base.GetFile(virtualPath);
else
return new MyVirtualFile(virtualPath);
}
public class MyVirtualFile : VirtualFile
{
public MyVirtualFile(string virtualPath) : base(virtualPath) { }
public override Stream Open()
{
//Loading stream from seperate dll shows just plain text
//System.Reflection.Assembly assembly = System.Reflection.Assembly.LoadFile(
// System.IO.Path.Combine(HttpRuntime.BinDirectory, "Infra.dll"));
//return assembly.GetManifestResourceStream("Infra.Views.Home.Index.cshtml");
//Changed to string but also it shows plain text.
return new System.IO.MemoryStream(System.Text.ASCIIEncoding.UTF8.GetBytes(
"@inherits System.Web.Mvc.WebViewPage \r\n <h2>Hellow World !</h2>"));
}
}
}