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