C# Class SampleWebApp.FormletFilterAttribute

Inheritance: System.Web.Mvc.ActionFilterAttribute
Show file Open project: mausch/CsFormlets

Public Methods

Method Description
FormletFilterAttribute ( ) : System

Uses method [action]Formlet of current controller to get the formlet to be used

FormletFilterAttribute ( Type formletType ) : System

Uses method [action]Formlet of type formletType to get the formlet to be used

FormletFilterAttribute ( Type formletType, string formletMethodName ) : System

Uses method formletMethodName of type formletType to get the formlet to be used

FormletFilterAttribute ( string formletMethodName ) : System

Uses method formletMethodName of current controller to get the formlet to be used

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

Method Details

FormletFilterAttribute() public method

Uses method [action]Formlet of current controller to get the formlet to be used
public FormletFilterAttribute ( ) : System
return System

FormletFilterAttribute() public method

Uses method [action]Formlet of type formletType to get the formlet to be used
public FormletFilterAttribute ( Type formletType ) : System
formletType System.Type
return System

FormletFilterAttribute() public method

Uses method formletMethodName of type formletType to get the formlet to be used
public FormletFilterAttribute ( Type formletType, string formletMethodName ) : System
formletType System.Type
formletMethodName string
return System

FormletFilterAttribute() public method

Uses method formletMethodName of current controller to get the formlet to be used
public FormletFilterAttribute ( string formletMethodName ) : System
formletMethodName string
return System

OnActionExecuting() public method

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