2 instantiations of SslCredKey
System.Net.Security (2)
System\Net\Security\SslSessionsCache.cs (2)
114var key = new SslCredKey(thumbPrint, (int)sslProtocols, isServer, encryptionPolicy, sendTrustList, checkRevocation, allowTlsResume); 157SslCredKey key = new SslCredKey(thumbPrint, (int)sslProtocols, isServer, encryptionPolicy, sendTrustList, checkRevocation, allowTlsResume);
9 references to SslCredKey
System.Net.Security (9)
System\Net\Security\SslSessionsCache.cs (9)
17private static readonly ConcurrentDictionary<SslCredKey, SafeCredentialReference> s_cachedCreds = 18new ConcurrentDictionary<SslCredKey, SafeCredentialReference>(); 23private readonly struct SslCredKey : IEquatable<SslCredKey> 74obj is SslCredKey other && Equals(other); 76public bool Equals(SslCredKey other) 114var key = new SslCredKey(thumbPrint, (int)sslProtocols, isServer, encryptionPolicy, sendTrustList, checkRevocation, allowTlsResume); 129private static SafeFreeCredentials? GetCachedCredential(SslCredKey key) 157SslCredKey key = new SslCredKey(thumbPrint, (int)sslProtocols, isServer, encryptionPolicy, sendTrustList, checkRevocation, allowTlsResume); 209KeyValuePair<SslCredKey, SafeCredentialReference>[] toRemoveAttempt = s_cachedCreds.ToArray();