3 writes to m_tokenTable
mscorlib (3)
system\security\permissiontoken.cs (3)
352m_tokenTable = null; 421m_tokenTable = new Hashtable(m_size, 1.0f, new PermissionTokenKeyComparer()); 494m_tokenTable = new Hashtable(m_size, 1.0f, new PermissionTokenKeyComparer());
12 references to m_tokenTable
mscorlib (12)
system\security\permissiontoken.cs (12)
367if (m_tokenTable == null) 370tok = (PermissionToken)m_tokenTable[cls.AssemblyQualifiedName]; 410tok = m_tokenTable != null ? m_tokenTable[typeStr] : null; // Assumes asynchronous lookups are safe 416if (m_tokenTable != null) 418tok = m_tokenTable[typeStr]; // Make sure it wasn't just added 436m_tokenTable.Add(typeStr, tok); 484tok = m_tokenTable != null ? m_tokenTable[typeStr] : null; // Assumes asynchronous lookups are safe 489if (m_tokenTable != null) 491tok = m_tokenTable[typeStr]; // Make sure it wasn't just added 499m_tokenTable.Add(typeStr, tok);