This repository was archived by the owner on Nov 20, 2018. It is now read-only.
This repository was archived by the owner on Nov 20, 2018. It is now read-only.
IHttpTransportLayerSecurityFeature is just bizzare #70
Closed
Description
Should be renamed:
using System.Security.Cryptography.X509Certificates;
using System.Threading.Tasks;
using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.HttpFeature
{
[AssemblyNeutral]
public interface IHttpClientCertificateFeature
{
// For sync access to the cert or assignment
X509Certificate ClientCertificate { get; set; }
// For async access to the cert
Task<X509Certificate> GetClientCertificateAsync();
}
}