TreeSharp.Action.Run C# (CSharp) Method

Run() protected method

Runs this action, and returns a RunStatus describing it's current state of execution. If this method is not overriden, it returns RunStatus.Failure.
protected Run ( object context ) : RunStatus
context object
return RunStatus
        protected virtual RunStatus Run(object context)
        {
            return RunStatus.Failure;
        }