示例#1
0
 protected void NotifySuccessor(IDU op, ObjectHierarchy where, string info, object value)
 {
     if (_successor != null)
     {
         if (!_disableNotifies) _successor.Handle(op, where, info, value);
     }
 }
示例#2
0
 protected virtual void Handle(IDU op, ObjectHierarchy where, string info, object value)
 {
     NotifySuccessor(op, where, info, value);
 }