internal TriggerBase(Type associatedObjectTypeConstraint)
        {
            this.associatedObjectTypeConstraint = associatedObjectTypeConstraint;
            TriggerActionCollection value = new TriggerActionCollection();

            SetValue(ActionsPropertyKey, value);
        }
Esempio n. 2
0
 internal Trigger()
 {
     _actions = new TriggerActionCollection();
 }