/// <summary> /// Delete a serie. /// </summary> /// <param name="database">The database in which the given serie should be deleted.</param> /// <param name="serieName">The name of the serie.</param> /// <returns></returns> public async Task <InfluxDbApiResponse> DropSeriesAsync(string database, string serieName) { return(await _influxDbClient.DropSeries(NoErrorHandlers, database, serieName)); }
public async Task <InfluxDbApiResponse> DropSeries(IEnumerable <ApiResponseErrorHandlingDelegate> errorHandlers, string database, string name) { return(await _influxDbClient.DropSeries(errorHandlers, database, name)); }