3 writes to stringValue
System.Runtime.Serialization (3)
System\Xml\XmlMtomReader.cs (3)
1147this.stringValue = null; 1298this.stringValue = this.stringValue.Substring(consumed * 2); 1385this.stringValue = Convert.ToBase64String(buffer, 0, this.valueCount);
8 references to stringValue
System.Runtime.Serialization (8)
System\Xml\XmlMtomReader.cs (8)
1132if (this.finishedStream || (this.bytesRemaining == this.chunkSize && this.stringValue == null)) 1170if (this.stringValue != null) 1296if (this.stringValue != null && consumed > 0) 1298this.stringValue = this.stringValue.Substring(consumed * 2); 1325count = Math.Min(stringValue.Length - stringOffset, count); 1328stringValue.CopyTo(stringOffset, chars, offset, count); 1341if (stringValue == null) 1387return this.stringValue;