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