System.Xml.XmlValidatingReader.ReadContentAsBase64 Method

Reads the content and returns the Base64 decoded binary bytes.

Syntax

public override int ReadContentAsBase64 (byte[] buffer, int index, int count)

Parameters

buffer
The buffer into which to copy the resulting text. This value cannot be null.
index
The offset into the buffer where to start copying the result.
count
The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.

Returns

The number of bytes written to the buffer.

Remarks

Note:

The System.Xml.XmlValidatingReader class is obsolete in dnprdnext. You can create a validating System.Xml.XmlReader instance by using the System.Xml.XmlReaderSettings class and the erload:System.Xml.XmlReader.Create method. For more information, see Validating XML Data with XmlReader.

This method streams the content, decodes the Base64 content, and returns the decoded binary bytes (for example, an inline Base64 encoded GIF image) into the buffer. This method can be called successively to read large streams of embedded text. For more information, see RFC 1521, "MIME (Multipurpose Internet Mail Extensions) Part One: Mechanisms for Specifying and Describing the Format of Internet Message Bodies". You can obtain RFCs from the Request for Comments Web site at http://www.rfc-editor.org.

Note:

You should not access any of the reader properties between calls to the XmlValidatingReader.ReadContentAsBase64(Byte[], int, int) method until the method returns the value 0.

This method has the following behavior:

Requirements

Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Assembly Versions: 2.0.0.0, 4.0.0.0
Since: .NET 2.0