/// <summary>
 /// Deletes the specified metric point from the Cachet API asynchronously.
 /// </summary>
 /// <param name="MetricPoint">The metric point.</param>
 public async Task <bool> DeleteMetricPointAsync(MetricPointObject MetricPoint)
 {
     return(await this.DeleteMetricPointAsync(MetricPoint.MetricId, MetricPoint.Id));
 }
 /// <summary>
 /// Deletes the specified metric point from the Cachet API.
 /// </summary>
 /// <param name="MetricPoint">The metric point.</param>
 public bool DeleteMetricPoint(MetricPointObject MetricPoint)
 {
     return(this.DeleteMetricPoint(MetricPoint.MetricId, MetricPoint.Id));
 }