2 instantiations of SslCredKey
System.Net.Security (2)
System\Net\Security\SslSessionsCache.cs (2)
123var key = new SslCredKey(thumbPrint, (int)sslProtocols, isServer, encryptionPolicy, sendTrustList, checkRevocation, allowTlsResume, allowRsaPssPadding, allowRsaPkcs1Padding); 168SslCredKey key = new SslCredKey(thumbPrint, (int)sslProtocols, isServer, encryptionPolicy, sendTrustList, checkRevocation, allowTlsResume, allowRsaPssPadding, allowRsaPkcs1Padding);
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> 79obj is SslCredKey other && Equals(other); 81public bool Equals(SslCredKey other) 123var key = new SslCredKey(thumbPrint, (int)sslProtocols, isServer, encryptionPolicy, sendTrustList, checkRevocation, allowTlsResume, allowRsaPssPadding, allowRsaPkcs1Padding); 138private static SafeFreeCredentials? GetCachedCredential(SslCredKey key) 168SslCredKey key = new SslCredKey(thumbPrint, (int)sslProtocols, isServer, encryptionPolicy, sendTrustList, checkRevocation, allowTlsResume, allowRsaPssPadding, allowRsaPkcs1Padding); 220KeyValuePair<SslCredKey, SafeCredentialReference>[] toRemoveAttempt = s_cachedCreds.ToArray();