3 writes to _dict
mscorlib (3)
system\runtime\remoting\message.cs (3)
1924_dict = idict; 2045_dict = new Hashtable(); 2078_dict = new Hashtable();
24 references to _dict
mscorlib (24)
system\runtime\remoting\message.cs (24)
1931if ((_dict != null) && (_dict.Count > 0)) 1941get { return _dict; } 1963else if (_dict != null) 1965return _dict.Contains(key); 1994if (_dict != null) 1996_dict.CopyTo(array, index+_keys.Length); 2014if (_dict != null) 2016return _dict[key]; 2043if (_dict == null) 2047_dict[key] = value; 2055return new MessageDictionaryEnumerator(this, _dict); 2074if (_dict == null) 2080_dict.Add(key, value); 2087if (null != _dict) 2089_dict.Clear(); 2095if (ContainsSpecialKey(key) || (_dict == null)) 2103_dict.Remove(key); 2113ICollection c = (_dict != null) ? _dict.Keys : null; 2139ICollection c = (_dict != null) ? _dict.Keys : null; 2164if (_dict != null) 2166return _dict.Count+_keys.Length;