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)
1931
if ((
_dict
!= null) && (
_dict
.Count > 0))
1941
get { return
_dict
; }
1963
else if (
_dict
!= null)
1965
return
_dict
.Contains(key);
1994
if (
_dict
!= null)
1996
_dict
.CopyTo(array, index+_keys.Length);
2014
if (
_dict
!= null)
2016
return
_dict
[key];
2043
if (
_dict
== null)
2047
_dict
[key] = value;
2055
return new MessageDictionaryEnumerator(this,
_dict
);
2074
if (
_dict
== null)
2080
_dict
.Add(key, value);
2087
if (null !=
_dict
)
2089
_dict
.Clear();
2095
if (ContainsSpecialKey(key) || (
_dict
== null))
2103
_dict
.Remove(key);
2113
ICollection c = (
_dict
!= null) ?
_dict
.Keys : null;
2139
ICollection c = (
_dict
!= null) ?
_dict
.Keys : null;
2164
if (
_dict
!= null)
2166
return
_dict
.Count+_keys.Length;