3 writes to storedLength
System.Runtime.Serialization (3)
System\Xml\XmlMtomReader.cs (3)
2948this.storedLength = count; 2959this.storedLength += count - this.storedOffset; 2966this.storedLength += count - this.storedOffset;
8 references to storedLength
System.Runtime.Serialization (8)
System\Xml\XmlMtomReader.cs (8)
2906if (this.storedOffset < this.storedLength) 2908read = Math.Min(count, this.storedLength - this.storedOffset); 2921if (this.storedOffset < this.storedLength) 2943if (this.storedOffset == this.storedLength) 2956else if (count <= this.storedBuffer.Length - this.storedLength + this.storedOffset) 2958Buffer.BlockCopy(this.storedBuffer, this.storedOffset, this.storedBuffer, count, this.storedLength - this.storedOffset); 2964byte[] newBuffer = new byte[count + this.storedLength - this.storedOffset]; 2965Buffer.BlockCopy(this.storedBuffer, this.storedOffset, newBuffer, count, this.storedLength - this.storedOffset);