public EventNodeProxy(object source, IProxyEventInfo eventInfo) : base(source)
 {
     this.eventInfo = eventInfo;
     this.isStatic  = this.eventInfo.IsStatic;
 }
Пример #2
0
 public EventTargetProxy(object target, IProxyEventInfo eventInfo) : base(target)
 {
     this.eventInfo = eventInfo;
 }
 public EventNodeProxy(IProxyEventInfo eventInfo) : this(null, eventInfo)
 {
 }