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