MVC3 integrated, with some changes to make it compile on Mono and with Razor2
[mono-project.git] / mcs / class / System.Web.Mvc3 / Mvc / ITempDataProvider.cs
blob4b3e52d1382b1080a4d729cecc7dd467d84b66df
1 namespace System.Web.Mvc {
2 using System.Collections.Generic;
4 public interface ITempDataProvider {
5 IDictionary<string, object> LoadTempData(ControllerContext controllerContext);
6 void SaveTempData(ControllerContext controllerContext, IDictionary<string, object> values);