/// <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> /// <summary>Update patient</summary> /// <param name="authorisation">Authorisation</param> /// <param name="body">Patient to be updated</param> /// <param name="patientId">Patient ID</param> /// <returns>successful operation</returns> /// <exception cref="ApiException">A server side error occurred.</exception> public async System.Threading.Tasks.Task <Patient> PutPatientAsync(string authorisation, Patient body, int patientId, System.Threading.CancellationToken cancellationToken) { if (patientId == null) { throw new System.ArgumentNullException("patientId"); } var urlBuilder_ = new System.Text.StringBuilder(); urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/patients/{patientId}"); urlBuilder_.Replace("{patientId}", System.Uri.EscapeDataString(ConvertToString(patientId, System.Globalization.CultureInfo.InvariantCulture))); var client_ = _httpClient; try { using (var request_ = new System.Net.Http.HttpRequestMessage()) { if (authorisation == null) { throw new System.ArgumentNullException("authorisation"); } request_.Headers.TryAddWithoutValidation("Authorisation", ConvertToString(authorisation, System.Globalization.CultureInfo.InvariantCulture)); var content_ = new System.Net.Http.StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(body, _settings.Value)); content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); request_.Content = content_; request_.Method = new System.Net.Http.HttpMethod("PUT"); request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("*/*")); PrepareRequest(client_, request_, urlBuilder_); var url_ = urlBuilder_.ToString(); request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); PrepareRequest(client_, request_, url_); var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); try { var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); if (response_.Content != null && response_.Content.Headers != null) { foreach (var item_ in response_.Content.Headers) { headers_[item_.Key] = item_.Value; } } ProcessResponse(client_, response_); var status_ = ((int)response_.StatusCode).ToString(); if (status_ == "200") { var objectResponse_ = await ReadJsonObjectResponseAsync <Patient>(response_, headers_).ConfigureAwait(false); return(objectResponse_.Object); } else if (status_ == "201") { string responseText_ = (response_.Content == null) ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); throw new ApiException("Created", (int)response_.StatusCode, responseText_, headers_, null); } else if (status_ == "401") { string responseText_ = (response_.Content == null) ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); throw new ApiException("Unauthorized", (int)response_.StatusCode, responseText_, headers_, null); } else if (status_ == "403") { string responseText_ = (response_.Content == null) ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); throw new ApiException("Forbidden", (int)response_.StatusCode, responseText_, headers_, null); } else if (status_ == "404") { string responseText_ = (response_.Content == null) ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); throw new ApiException("Not Found", (int)response_.StatusCode, responseText_, headers_, null); } else if (status_ != "200" && status_ != "204") { var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); throw new ApiException("The HTTP status code of the response was not expected (" + (int)response_.StatusCode + ").", (int)response_.StatusCode, responseData_, headers_, null); } return(default(Patient)); } finally { if (response_ != null) { response_.Dispose(); } } } } finally { } }
/// <summary>Update patient</summary> /// <param name="authorisation">Authorisation</param> /// <param name="body">Patient to be updated</param> /// <param name="patientId">Patient ID</param> /// <returns>successful operation</returns> /// <exception cref="ApiException">A server side error occurred.</exception> public System.Threading.Tasks.Task <Patient> PutPatientAsync(string authorisation, Patient body, int patientId) { return(PutPatientAsync(authorisation, body, patientId, System.Threading.CancellationToken.None)); }