AppEvents.Rule.Do C# (CSharp) Method

Do() public method

Adds the action to the RuleSet for the Client to execute
public Do ( Action action ) : Rule
action Action
return Rule
        public Rule Do(Action<Rule> action)
        {
            Action = action;

            return this;
        }