I am writing an application in C #. It retrieves data from the Clouds NoSQL DB database.
But when I try to create an Http client:
HttpClient client = HttpClientFactory.Create(new LoggingHandler());
the compiler throws an error saying that
'HttpClientFactory' does not exist in the current context
I also included:
using System.Net.Http;"
up.
I still cannot find where the error is.
Maybe someone will shed some light.
source
share