3 writes to index
System.Data.Services (3)
System\Data\Services\Serializers\DataStringEscapeBuilder.cs (3)
74
for (this.
index
= 0; this.index < this.input.Length; ++this.
index
)
112
while (++this.
index
< this.input.Length)
5 references to index
System.Data.Services (5)
System\Data\Services\Serializers\DataStringEscapeBuilder.cs (5)
71
Debug.Assert(this.
index
== 0, "Expected this.index to be 0, because Build can only be called once for an instance of DataStringEscapeBuilder.");
74
for (this.index = 0; this.
index
< this.input.Length; ++this.index)
76
char current = this.input[this.
index
];
114
if (this.input[this.
index
] == quoteStart)
123
this.quotedDataBuilder.Append(this.input[this.
index
]);