Ejemplo n.º 1
0
 public static void Delete(vCloudClient client, ReferenceType adminCatalogRef)
 {
     try
     {
         AdminCatalog.DeleteAdminCatalog(client, adminCatalogRef.href);
     }
     catch (Exception ex)
     {
         throw new VCloudException(ex.Message);
     }
 }
Ejemplo n.º 2
0
 public void Delete()
 {
     try
     {
         AdminCatalog.DeleteAdminCatalog(this.VcloudClient, this.Reference.href);
     }
     catch (Exception ex)
     {
         throw new VCloudException(ex.Message);
     }
 }