示例#1
0
 /// <summary>
 /// Remove the given Server from the cluster.
 /// </summary>
 /// <param name="id">The id of the server to remove.</param>
 /// <returns></returns>
 public async Task <InfluxDbApiResponse> RemoveServersAsync(int id)
 {
     return(await _influxDbClient.RemoveServers(NoErrorHandlers, id));
 }
 public async Task <InfluxDbApiResponse> RemoveServers(IEnumerable <ApiResponseErrorHandlingDelegate> errorHandlers, int id)
 {
     return(await _influxDbClient.RemoveServers(errorHandlers, id));
 }