1 write to quotedDataBuilder
System.Data.Services (1)
System\Data\Services\Serializers\DataStringEscapeBuilder.cs (1)
102this.quotedDataBuilder = new StringBuilder();
7 references to quotedDataBuilder
System.Data.Services (7)
System\Data\Services\Serializers\DataStringEscapeBuilder.cs (7)
100if (this.quotedDataBuilder == null) 116this.output.Append(Uri.EscapeDataString(this.quotedDataBuilder.ToString())); 118this.quotedDataBuilder.Clear(); 123this.quotedDataBuilder.Append(this.input[this.index]); 126if (this.quotedDataBuilder.Length > 0) 130this.output.Append(Uri.EscapeDataString(this.quotedDataBuilder.ToString())); 131this.quotedDataBuilder.Clear();