MVC3 integrated, with some changes to make it compile on Mono and with Razor2
[mono-project.git] / mcs / class / System.Web.Mvc3 / Mvc / NullViewLocationCache.cs
blob003b21f4095df8809c9936896de3ae751de41148
1 namespace System.Web.Mvc {
2 using System;
3 using System.Collections.Generic;
4 using System.Linq;
5 using System.Text;
7 internal sealed class NullViewLocationCache : IViewLocationCache {
9 #region IViewLocationCache Members
10 public string GetViewLocation(HttpContextBase httpContext, string key) {
11 return null;
14 public void InsertViewLocation(HttpContextBase httpContext, string key, string virtualPath) {
16 #endregion