Esempio n. 1
0
 public void Delete(string id)
 {
     if (CUK != null && CUK.HasKey(id))
     {
         WCUK.ZapKey(id);
     }
     if (LMK != null && LMK.HasKey(id))
     {
         WLMK.ZapKey(id);
     }
     if (SAK != null && SAK.HasKey(id))
     {
         WSAK.ZapKey(id);
     }
 }
Esempio n. 2
0
 public void ZapKey(string path)
 {
     if (CUK != null && CUK.HasKey(path))
     {
         WCUK.ZapKey(path);
     }
     if (LMK != null && LMK.HasKey(path))
     {
         WLMK.ZapKey(path);
     }
     if (SAK != null && SAK.HasKey(path))
     {
         WSAK.ZapKey(path);
     }
 }