3 writes to count
System.Runtime.Serialization (3)
System\Xml\XmlBaseWriter.cs (3)
2498
this.
count
= inputState.Arguments.Count;
2514
this.
count
--;
2642
this.
count
= 0;
7 references to count
System.Runtime.Serialization (7)
System\Xml\XmlBaseWriter.cs (7)
2505
if (this.
count
> 0)
2511
while (this.writer.trailByteCount < 3 && this.
count
> 0)
2518
this.totalByteCount = this.writer.trailByteCount + this.
count
;
2539
Buffer.BlockCopy(this.buffer, this.offset, this.writer.trailBytes, this.writer.trailByteCount, this.
count
);
2540
this.writer.trailByteCount += this.
count
;
2592
Fx.Assert(this.
count
> 0 && this.actualByteCount >= 3, "HandleWriteBase64Text cannot be invoked with less than 3 bytes.");
2629
int trailOffset = offset +
count
- this.writer.trailByteCount;