DeleteApplication() public method

public DeleteApplication ( string applicationSlug ) : bool
applicationSlug string
return bool
Example #1
0
 public void DeleteApplication(string id)
 {
     if (!_api.DeleteApplication(id))
     {
         throw new ApiException();
     }
 }