3 instantiations of CredentialHostKey
System.Net.Primitives (3)
11 references to CredentialHostKey
System.Net.Primitives (11)
System\Net\CredentialCache.cs (11)
17private Dictionary<CredentialHostKey, NetworkCredential>? _cacheForHosts;
66var key = new CredentialHostKey(host, port, authenticationType);
70_cacheForHosts ??= new Dictionary<CredentialHostKey, NetworkCredential>();
120var key = new CredentialHostKey(host, port, authenticationType);
157var key = new CredentialHostKey(host, port, authenticationType);
188new SingleTableCredentialEnumerator<CredentialHostKey>(cache, cache._cacheForHosts) :
270private Dictionary<CredentialHostKey, NetworkCredential>.ValueCollection.Enumerator _enumerator; // mutable struct field deliberately not readonly.
348internal readonly struct CredentialHostKey : IEquatable<CredentialHostKey>
370public bool Equals(CredentialHostKey other)
383obj is CredentialHostKey && Equals((CredentialHostKey)obj);