4 overrides of WriteBase64Text
System.Runtime.Serialization (4)
System\Xml\XmlBinaryWriter.cs (1)
563public override void WriteBase64Text(byte[] trailBytes, int trailByteCount, byte[] base64Buffer, int base64Offset, int base64Count)
System\Xml\XmlNodeWriter.cs (1)
147public override void WriteBase64Text(byte[] trailBuffer, int trailCount, byte[] buffer, int offset, int count) { }
System\Xml\XmlSigningNodeWriter.cs (1)
337public override void WriteBase64Text(byte[] trailBytes, int trailByteCount, byte[] buffer, int offset, int count)
System\Xml\XmlUTF8TextWriter.cs (1)
718public override void WriteBase64Text(byte[] trailBytes, int trailByteCount, byte[] buffer, int offset, int count)
4 references to WriteBase64Text
System.Runtime.Serialization (4)
System\Xml\XmlBaseWriter.cs (2)
1348writer.WriteBase64Text(trailBytes, trailByteCount, buffer, offset, actualByteCount - trailByteCount); 1697writer.WriteBase64Text(trailBytes, trailByteCount, trailBytes, 0, 0);
System\Xml\XmlNodeWriter.cs (1)
177this.nodeWriter.WriteBase64Text(this.trailBuffer, this.trailCount, this.buffer, this.offset, this.count);
System\Xml\XmlSigningNodeWriter.cs (1)
344writer.WriteBase64Text(trailBytes, trailByteCount, buffer, offset, count);