File: Util\X509Helper.cs | Web Access |
Project: src\src\VersionTools\Microsoft.DotNet.VersionTools\Microsoft.DotNet.VersionTools.csproj (Microsoft.DotNet.VersionTools) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Net.Http; namespace Microsoft.DotNet.VersionTools.src.Util { class X509Helper { public static HttpClient GetHttpClientWithCertRevocation() { return new HttpClient(new HttpClientHandler { CheckCertificateRevocationList = true }); } } } |