C# Class Castle.MonoRail.Framework.DelegateDynamicAction

Represents a dynamic action that forwards the call to an ActionDelegate
Inheritance: IDynamicAction
Show file Open project: nats/castle-1.0.3-mono

Public Methods

Method Description
DelegateDynamicAction ( ActionDelegate actionDelegate )

Initializes a new instance of the DelegateDynamicAction class.

Execute ( Controller controller ) : void

Implementors should perform the action upon this invocation

Method Details

DelegateDynamicAction() public method

Initializes a new instance of the DelegateDynamicAction class.
public DelegateDynamicAction ( ActionDelegate actionDelegate )
actionDelegate ActionDelegate The action delegate.

Execute() public method

Implementors should perform the action upon this invocation
public Execute ( Controller controller ) : void
controller Controller
return void