AppEvents.Rule.Do C# (CSharp) Méthode

Do() public méthode

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

            return this;
        }