-
Notifications
You must be signed in to change notification settings - Fork 32
Open
Description
When using Windows.Web.Http.HttpClient you can do stuff like this:
private HttpClient CreateClient()
{
var filter = new HttpBaseProtocolFilter();
if (_env.IgnoreSslProblems)
{
filter.IgnorableServerCertificateErrors.Add(ChainValidationResult.IncompleteChain);
filter.IgnorableServerCertificateErrors.Add(ChainValidationResult.Expired);
filter.IgnorableServerCertificateErrors.Add(ChainValidationResult.Untrusted);
filter.IgnorableServerCertificateErrors.Add(ChainValidationResult.InvalidName);
}
return new HttpClient(filter);
}
Is it possible to do this with PortableRest? Or would we have to create a (less portable) fork?
Metadata
Metadata
Assignees
Labels
No labels