Exemplo n.º 1
0
 /// <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));
 }
Exemplo n.º 2
0
 /// <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));
 }