C# Класс Rebel.Cms.Web.Mvc.ActionFilters.AbstractTempDataCookieFilter

An abstract ActionFilter used to store temporary cookie data that is only persisted for one redirect
Наследование: System.Web.Mvc.ActionFilterAttribute
Показать файл Открыть проект

Открытые методы

Метод Описание
OnActionExecuted ( System.Web.Mvc.ActionExecutedContext filterContext ) : void

Checks the result type, if it is a RedirectToRouteResult it calls the abstract OnRedirect method otherwise if its a view result calls the abstract OnView method.

OnActionExecuting ( System.Web.Mvc.ActionExecutingContext filterContext ) : void

Clears out all cookies starting with the prefix

Generally these cookies will be cleared out on the client side but just in case this will help ensure that we don't leave residule cookes laying around, even though we've already set them to expire in a minute... better safe than sorry

OnResultExecuted ( System.Web.Mvc.ResultExecutedContext filterContext ) : void

Writes the notifications cookie

Защищенные методы

Метод Описание
AddQueryString ( System.Web.Mvc.RedirectToRouteResult result, System.Web.Mvc.ActionExecutedContext filterContext ) : void

Adds the query string name with the temp data key to QueryStrings

AddViewData ( System.Web.Mvc.ViewResult result, System.Web.Mvc.ActionExecutedContext filterContext ) : void

Adds the query string name with the temp data key to ViewData

CreateCookie ( System.Web.Mvc.ResultExecutedContext filterContext ) : void

Creates the cookie

GetTempDataKey ( ControllerContext filterContext ) : string

Returns the key used to reference the cookie temp data

GetTempDataValue ( ControllerContext filterContext ) : object

Returns the value to be stored in the cookie

Описание методов

AddQueryString() защищенный Метод

Adds the query string name with the temp data key to QueryStrings
protected AddQueryString ( System.Web.Mvc.RedirectToRouteResult result, System.Web.Mvc.ActionExecutedContext filterContext ) : void
result System.Web.Mvc.RedirectToRouteResult
filterContext System.Web.Mvc.ActionExecutedContext
Результат void

AddViewData() защищенный Метод

Adds the query string name with the temp data key to ViewData
protected AddViewData ( System.Web.Mvc.ViewResult result, System.Web.Mvc.ActionExecutedContext filterContext ) : void
result System.Web.Mvc.ViewResult
filterContext System.Web.Mvc.ActionExecutedContext
Результат void

CreateCookie() защищенный Метод

Creates the cookie
protected CreateCookie ( System.Web.Mvc.ResultExecutedContext filterContext ) : void
filterContext System.Web.Mvc.ResultExecutedContext
Результат void

GetTempDataKey() защищенный абстрактный Метод

Returns the key used to reference the cookie temp data
protected abstract GetTempDataKey ( ControllerContext filterContext ) : string
filterContext ControllerContext
Результат string

GetTempDataValue() защищенный абстрактный Метод

Returns the value to be stored in the cookie
protected abstract GetTempDataValue ( ControllerContext filterContext ) : object
filterContext ControllerContext
Результат object

OnActionExecuted() публичный Метод

Checks the result type, if it is a RedirectToRouteResult it calls the abstract OnRedirect method otherwise if its a view result calls the abstract OnView method.
public OnActionExecuted ( System.Web.Mvc.ActionExecutedContext filterContext ) : void
filterContext System.Web.Mvc.ActionExecutedContext
Результат void

OnActionExecuting() публичный Метод

Clears out all cookies starting with the prefix
Generally these cookies will be cleared out on the client side but just in case this will help ensure that we don't leave residule cookes laying around, even though we've already set them to expire in a minute... better safe than sorry
public OnActionExecuting ( System.Web.Mvc.ActionExecutingContext filterContext ) : void
filterContext System.Web.Mvc.ActionExecutingContext
Результат void

OnResultExecuted() публичный Метод

Writes the notifications cookie
public OnResultExecuted ( System.Web.Mvc.ResultExecutedContext filterContext ) : void
filterContext System.Web.Mvc.ResultExecutedContext
Результат void