1 write to nullKeyDictionary
System.ServiceModel.Internals (1)
System\Runtime\Collections\NullableKeyDictionary.cs (1)
302this.nullKeyDictionary = nullKeyDictionary;
12 references to nullKeyDictionary
System.ServiceModel.Internals (12)
System\Runtime\Collections\NullableKeyDictionary.cs (12)
309int count = this.nullKeyDictionary.innerDictionary.Values.Count; 310if (this.nullKeyDictionary.isNullKeyPresent) 335return this.nullKeyDictionary.innerDictionary.Values.Contains(item) || 336(this.nullKeyDictionary.isNullKeyPresent && this.nullKeyDictionary.nullKeyValue.Equals(item)); 341this.nullKeyDictionary.innerDictionary.Values.CopyTo(array, arrayIndex); 342if (this.nullKeyDictionary.isNullKeyPresent) 344array[arrayIndex + this.nullKeyDictionary.innerDictionary.Values.Count] = this.nullKeyDictionary.nullKeyValue; 355foreach (TypeValue item in this.nullKeyDictionary.innerDictionary.Values) 360if (this.nullKeyDictionary.isNullKeyPresent) 362yield return this.nullKeyDictionary.nullKeyValue;