This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var handler = new HttpClientHandler | |
{ | |
UseDefaultCredentials = true, | |
ServerCertificateCustomValidationCallback = (sender, cert, chain, error) => | |
{ | |
//// Access cert object | |
return true; | |
} | |
}; | |
//// use above httphandler with HttpClient | |
using (HttpClient client = new HttpClient(handler)) | |
{ | |
using (HttpResponseMessage response = await client.GetAsync("https://mail.google.com")) | |
{ | |
using (HttpContent content = response.Content) | |
{ | |
//// do something | |
} | |
} | |
} |