Merge pull request #1156 from felfert/master
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / NullViewLocationCache.cs
1 namespace System.Web.Mvc {
2     using System;
3     using System.Collections.Generic;
4     using System.Linq;
5     using System.Text;
6
7     internal sealed class NullViewLocationCache : IViewLocationCache {
8
9         #region IViewLocationCache Members
10         public string GetViewLocation(HttpContextBase httpContext, string key) {
11             return null;
12         }
13
14         public void InsertViewLocation(HttpContextBase httpContext, string key, string virtualPath) {
15         }
16         #endregion
17     }
18 }