public CallbackTriggerManager(ITriggerScope scope)
        {
            if (scope == null)
                throw new ArgumentNullException("scope");

            Scope = scope;
            triggers = new Dictionary<string, CallbackTrigger>();
        }
Example #2
0
        public CallbackTriggerManager(ITriggerScope scope)
        {
            if (scope == null)
            {
                throw new ArgumentNullException("scope");
            }

            Scope    = scope;
            triggers = new Dictionary <string, CallbackTrigger>();
        }