Class InvokeMethodEffector
Inheritance
InvokeMethodEffector
Assembly: Xareus.Unity.Libraries.dll
Syntax
[FunctionDescription("", new string[] { "Members" })]
public class InvokeMethodEffector : AUnityEffector
Constructors
InvokeMethodEffector(Event, Dictionary<string, Parameter>, IContext, IContext, IContext, IContext)
Declaration
protected InvokeMethodEffector(Event @event, Dictionary<string, Parameter> parameters, IContext externalContext, IContext scenarioContext, IContext sequenceContext, IContext eventContext)
Parameters
Fields
COMPONENT
Declaration
public const string COMPONENT = "Component"
Field Value
METHOD
Declaration
public const string METHOD = "Method"
Field Value
PARAMETERS
Declaration
public const string PARAMETERS = "Parameters"
Field Value
component
Declaration
[ConfigurationParameter("Component", Necessity.Required)]
protected Component component
Field Value
method
Declaration
[ConfigurationParameter("Method", Necessity.Required)]
[Provider("Component")]
protected MethodInfo method
Field Value
parameters
Declaration
[ConfigurationParameter("Parameters", Necessity.Required)]
[Provider("Method")]
protected MethodParameters parameters
Field Value
Methods
SafeEffectorUpdate()
Actual effector code. Note that this code will be executed in unity's thread
Declaration
public override void SafeEffectorUpdate()
Overrides
SafeReset()
Reset an effector. Note that this code will be executed in unity's thread and the declared parameters (using the ConfigurationParameter attribute) are already filled
Declaration
public override void SafeReset()
Overrides