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