System.Net.Http.CachedCertificateKey
namespace System.Net.Http
{
internal readonly struct CachedCertificateKey : IEquatable<CachedCertificateKey>
{
public IPAddress Address { get; }
public string Host { get; }
public CachedCertificateKey(IPAddress address, HttpRequestMessage message);
public bool Equals(CachedCertificateKey other);
}
}