C# Class NVelocity.Runtime.Parser.Node.AbstractExecutor

Abstract class that is used to execute an arbitrary method that is in introspected. This is the superclass for the GetExecutor and PropertyExecutor.
Show file Open project: rasmus-toftdahl-olesen/NVelocity Class Usage Examples

Protected Properties

Property Type Description
method System.Reflection.MethodInfo
property System.Reflection.PropertyInfo
runtimeLogger IRuntimeLogger
value object

Public Methods

Method Description
Execute ( Object o ) : Object

Execute method against context.

Method Details

Execute() public abstract method

Execute method against context.
public abstract Execute ( Object o ) : Object
o Object
return Object

Property Details

method protected property

Method to be executed.
protected MethodInfo,System.Reflection method
return System.Reflection.MethodInfo

property protected property

protected PropertyInfo,System.Reflection property
return System.Reflection.PropertyInfo

runtimeLogger protected property

protected IRuntimeLogger runtimeLogger
return IRuntimeLogger

value protected property

Value (probably from enum).
protected object value
return object