5 writes to nullKeyValue
System.ServiceModel.Internals (5)
System\Runtime\Collections\NullableKeyDictionary.cs (5)
73this.nullKeyValue = value; 91this.nullKeyValue = value; 110this.nullKeyValue = default(TValue); 148this.nullKeyValue = default(TValue); 187this.nullKeyValue = default(TValue);
9 references to nullKeyValue
System.ServiceModel.Internals (9)
System\Runtime\Collections\NullableKeyDictionary.cs (9)
56return this.nullKeyValue; 125value = this.nullKeyValue; 158return item.Value == null ? this.nullKeyValue == null : item.Value.Equals(this.nullKeyValue); 176array[arrayIndex + this.innerDictionary.Count] = new KeyValuePair<TKey, TValue>(default(TKey), this.nullKeyValue); 212yield return new KeyValuePair<TKey, TValue>(default(TKey), this.nullKeyValue); 336(this.nullKeyDictionary.isNullKeyPresent && this.nullKeyDictionary.nullKeyValue.Equals(item)); 344array[arrayIndex + this.nullKeyDictionary.innerDictionary.Values.Count] = this.nullKeyDictionary.nullKeyValue; 362yield return this.nullKeyDictionary.nullKeyValue;