I want to send out a POST with a specific certificate using WebClient. Request you to kindly help. I want something like this.
Dim myWebClient As New WebClient()
mywebclient.ClientCertificates.Add(new X509Certificate()
Dim responseArray1 As Byte() = myWebClient.UploadValues(finalurl1, "POST", myNameValueCollection1)
Please help .