/// <summary>
 /// Delete the named store
 /// </summary>
 /// <param name="storeName">The name of the store to delete.</param>
 public void DeleteStore(string storeName)
 {
     try
     {
         _serverCore.DeleteStore(storeName);
     }
     catch (Exception ex)
     {
         Logging.LogError(BrightstarEventId.ServerCoreException, "Error Deleting Store {0}", storeName);
         throw new BrightstarClientException("Error deleting store " + storeName + ". " + ex.Message, ex);
     }
 }
Ejemplo n.º 2
0
 public bool DeleteStore(string args)
 {
     try
     {
         _serverCore.DeleteStore(args, false);
         return(true);
     }
     catch (Exception ex)
     {
         // TODO: Log failure
         return(false);
     }
 }
 /// <summary>
 /// Delete the named store
 /// </summary>
 /// <param name="storeName">The store to delete.</param>
 public void DeleteStore(string storeName)
 {
     _serverCore.DeleteStore(storeName);
 }