System.Net.Http.CachedCertificateValue
namespace System.Net.Http
{
internal sealed class CachedCertificateValue
{
public byte[] RawCertificateData { get; }
public long LastUsedTime { get; set; }
public CachedCertificateValue(byte[] rawCertificateData, long lastUsedTime);
}
}