3 writes to valueContents
System.Data.Services (3)
System\Data\Services\Serializers\DictionaryContent.cs (3)
47this.valueContents = new List<object>(); 56this.valueContents = new List<object>(capacity); 70this.valueContents = other.valueContents;
7 references to valueContents
System.Data.Services (7)
System\Data\Services\Serializers\DictionaryContent.cs (7)
70this.valueContents = other.valueContents; 115this.valueContents.Add(value); 117Debug.Assert(this.valueNames.Count == this.valueContents.Count, "this.valueNames.Count == this.valueContents.Count"); 128this.valueContents.Add(null); 130Debug.Assert(this.valueNames.Count == this.valueContents.Count, "this.valueNames.Count == this.valueContents.Count"); 166object value = this.valueContents[index]; 205object propertyValue = this.valueContents[i];