Microsoft.Identity.Client.ManagedIdentity.V2.CertificateCacheValue
struct CertificateCacheValue
Immutable snapshot of a cached certificate and its associated metadata.
namespace Microsoft.Identity.Client.ManagedIdentity.V2
{
internal readonly struct CertificateCacheValue
{
public X509Certificate2 Certificate { get; }
public string Endpoint { get; }
public string ClientId { get; }
public CertificateCacheValue(X509Certificate2 certificate, string endpoint, string clientId);
}
}