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