C# Class BlackLinks.BlackAction

Show file Open project: heapsource/BlackLinks Class Usage Examples

Public Methods

Method Description
BlackAction ( ) : System
EnsureLookup ( ) : void
ExecuteLookup ( ) : void
OnExecute ( ) : void

Final step of the Action Chain, execute the action.

RenderTemplate ( string templateDiscoveryPath ) : void
RenderView ( string viewName ) : void
executeFilters ( ) : void

Protected Methods

Method Description
OnLoadFilters ( ) : void
OnLookup ( ) : void

Load all the information required to execute the action. If it's not explicitly called, its called automatically right before Execute.

Private Methods

Method Description
Execute ( ActionExecuteType type ) : bool

Execute the phases of the action.

loadFilters ( ) : void

Method Details

BlackAction() public method

public BlackAction ( ) : System
return System

EnsureLookup() public method

public EnsureLookup ( ) : void
return void

ExecuteLookup() public method

public ExecuteLookup ( ) : void
return void

OnExecute() public abstract method

Final step of the Action Chain, execute the action.
public abstract OnExecute ( ) : void
return void

OnLoadFilters() protected method

protected OnLoadFilters ( ) : void
return void

OnLookup() protected method

Load all the information required to execute the action. If it's not explicitly called, its called automatically right before Execute.
protected OnLookup ( ) : void
return void

RenderTemplate() public method

public RenderTemplate ( string templateDiscoveryPath ) : void
templateDiscoveryPath string
return void

RenderView() public method

public RenderView ( string viewName ) : void
viewName string
return void

executeFilters() public method

public executeFilters ( ) : void
return void