4 writes to end
System.Xml (4)
System\Xml\BinaryXml\XmlBinaryReader.cs (4)
353this.end = len; 359this.end = stream.Read(this.data, 0, XmlReader.DefaultBufferSize); 790this.pos = this.end = 0; 1796this.end = end + cbRead;
16 references to end
System.Xml (16)
System\Xml\BinaryXml\XmlBinaryReader.cs (16)
365this.eof = (0 == this.end); 1757int end = this.end; 1762Debug.Assert(this.mark <= this.end, "Mark should never be past End"); 1804Debug.Assert((this.pos + require) >= this.end); 1805while (FillAllowEOF() && ((this.pos + require) >= this.end)) 1807if ((this.pos + require) >= this.end) 1813if ((this.pos + require) >= this.end) 1909while ((this.pos >= this.end) && FillAllowEOF()) 1911if (this.pos >= this.end) 1917while ((this.pos >= this.end) && FillAllowEOF()) 1919if (this.pos >= this.end) 1949if (pos >= this.end) 1967if (pos < this.end) { 2034if (this.pos > this.end) 2043if (checked(pos + (cch * 2)) > this.end) 3168if ((this.end - this.tokDataPos) < this.tokLen)