1 write to _cacheForHosts
System.Net.Primitives (1)
System\Net\CredentialCache.cs (1)
70
_cacheForHosts
??= new Dictionary<CredentialHostKey, NetworkCredential>();
10 references to _cacheForHosts
System.Net.Primitives (10)
System\Net\CredentialCache.cs (10)
71
_cacheForHosts
.Add(key, credential);
112
if (
_cacheForHosts
== null)
124
_cacheForHosts
.Remove(key);
151
if (
_cacheForHosts
== null)
160
_cacheForHosts
.TryGetValue(key, out match);
181
return cache.
_cacheForHosts
!= null ?
187
return cache.
_cacheForHosts
!= null ?
188
new SingleTableCredentialEnumerator<CredentialHostKey>(cache, cache.
_cacheForHosts
) :
275
Debug.Assert(cache.
_cacheForHosts
!= null);
280
_enumerator = cache.
_cacheForHosts
.Values.GetEnumerator();