コード例 #1
0
ファイル: PrecompileEngine.cs プロジェクト: mind0n/hive
 protected override IView CreatePartialView(ControllerContext controllerContext, string partialPath)
 {
     var v = new PrecompileView(FetchUrlType(partialPath), partialPath);
     return v;
 }
コード例 #2
0
ファイル: PrecompileEngine.cs プロジェクト: mind0n/hive
 protected override IView CreateView(ControllerContext controllerContext, string viewPath, string masterPath)
 {
     var v = new PrecompileView(FetchUrlType(viewPath), viewPath);
     return v;
 }