AppEvents.Rule.Do C# (CSharp) 메소드

Do() 공개 메소드

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

            return this;
        }