Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IViewLocationCache.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8661349e27d47ea7cdb10dd3a3e80c9c60df1b8 (plain)
1
2
3
4
5
6
7
8
namespace System.Web.Mvc
{
    public interface IViewLocationCache
    {
        string GetViewLocation(HttpContextBase httpContext, string key);
        void InsertViewLocation(HttpContextBase httpContext, string key, string virtualPath);
    }
}