Here I have an HttpRequestMessage, and I am trying to add a client certificate to it, but cannot seem to find how to do this. Has anyone out there done something like this?
HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Get, "myapi/?myParm=" + aParm);
//Want to add a certificate to request - a .p12 file in my project
myAPIResponse res = await SendAndReadAsAsync<myAPIResponse>(request, aCancelToken);