Esempio n. 1
0
 public void UnregisterActionHandler(IZertzActionHandler handler)
 {
     lock(this.handlers) {
         this.handlers.Remove(handler);
     }
 }
Esempio n. 2
0
 public void RegisterActionHandler(IZertzActionHandler handler)
 {
     lock(this.handlers) {
         this.handlers.Add(handler);
     }
 }
Esempio n. 3
0
 public void UnregisterActionHandler(IZertzActionHandler handler)
 {
     this.zmc.UnregisterActionHandler(handler);
 }
Esempio n. 4
0
 public void UnregisterActionHandler(IZertzActionHandler handler)
 {
     lock (this.handlers) {
         this.handlers.Remove(handler);
     }
 }
Esempio n. 5
0
 public void RegisterActionHandler(IZertzActionHandler handler)
 {
     lock (this.handlers) {
         this.handlers.Add(handler);
     }
 }
Esempio n. 6
0
 public void UnregisterActionHandler(IZertzActionHandler handler)
 {
     this.zmc.UnregisterActionHandler(handler);
 }