Example #1
0
        public async Task <HttpResponseMessage> GetHealth()
        {
            var uri = this.GetFullUri("Diagnostics/Health");

            var response = await HttpClientUtils.GetResponseAsync(this.httpClient, uri).ConfigureAwait(false);

            return(response);
        }