System.Xml.XmlUTF8NodeWriter.WriteBase64Text C# (CSharp) Method

WriteBase64Text() public method

public WriteBase64Text ( byte trailBytes, int trailByteCount, byte buffer, int offset, int count ) : void
trailBytes byte
trailByteCount int
buffer byte
offset int
count int
return void
        public override void WriteBase64Text(byte[] trailBytes, int trailByteCount, byte[] buffer, int offset, int count)
        {
            if (trailByteCount > 0)
            {
                InternalWriteBase64Text(trailBytes, 0, trailByteCount);
            }
            InternalWriteBase64Text(buffer, offset, count);
        }