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