2 writes to actualByteCount
System.Runtime.Serialization (2)
System\Xml\XmlBaseWriter.cs (2)
2519this.actualByteCount = this.totalByteCount - (this.totalByteCount % 3); 2643this.actualByteCount = 0;
5 references to actualByteCount
System.Runtime.Serialization (5)
System\Xml\XmlBaseWriter.cs (5)
2526if (actualByteCount >= 3) 2531this.writer.WriteAttributeText(XmlConverter.Base64Encoding.GetString(this.buffer, this.offset, actualByteCount - this.writer.trailByteCount)); 2592Fx.Assert(this.count > 0 && this.actualByteCount >= 3, "HandleWriteBase64Text cannot be invoked with less than 3 bytes."); 2612this.nodeWriterArgs.Count = this.actualByteCount - this.writer.trailByteCount; 2626this.writer.trailByteCount = (this.totalByteCount - this.actualByteCount);