コード例 #1
0
ファイル: Verbs.cs プロジェクト: marcellodash/MBuild
 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);
     }
 }
コード例 #2
0
ファイル: Verbs.cs プロジェクト: marcellodash/MBuild
 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);
     }
 }