InternalWriter property

XmlWriter? InternalWriter
Writes the base64-encoded element value. The stream. Gets the XML writer.

Implementation

// void WriteBase64ElementValue(Stream stream)
//        {
//            Uint8List buffer = new byte[BufferSize];
//            int bytesRead;
//
//
//            {
//                do
//                {
//                    bytesRead = reader.Read(buffer, 0, BufferSize);
//
//                    if (bytesRead > 0)
//                    {
//                        this.xmlWriter.WriteBase64(buffer, 0, bytesRead);
//                    }
//                }
//                while (bytesRead > 0);
//            }
//        }

/// <summary>
/// Gets the XML writer.
/// </summary>
/// <value>The writer.</value>
XmlWriter? get InternalWriter => this._xmlWriter;