1 write to m_array
System (1)
net\System\Net\CredentialCache.cs (1)
332
m_array
= new ICredentials[table.Count + hostTable.Count];
6 references to m_array
System (6)
net\System\Net\CredentialCache.cs (6)
333
table.Values.CopyTo(
m_array
, 0);
334
hostTable.Values.CopyTo(
m_array
, table.Count);
344
if (m_index < 0 || m_index >=
m_array
.Length) {
350
return
m_array
[m_index];
360
if (++m_index <
m_array
.Length) {
363
m_index =
m_array
.Length;