Exemplo n.º 1
0
 public WeakEvent()
 {
     EventHandlers = new WeakDelegateCollection(true, true);
 }
Exemplo n.º 2
0
 public WeakEvent(bool freeReentry)
 {
     EventHandlers = new WeakDelegateCollection(true, freeReentry);
 }
Exemplo n.º 3
0
 public WeakEvent(bool reentryGuard)
 {
     _eventHandlers = new WeakDelegateCollection(true, reentryGuard);
 }