Reads the element and decodes the Base64 content.
Namespace:
System.Xml
Assembly:
System.Xml (in System.Xml.dll)
Visual Basic (Declaration)
Public Overrides Function ReadElementContentAsBase64 ( _
buffer As Byte(), _
index As Integer, _
count As Integer _
) As Integer
Dim instance As XmlTextReader
Dim buffer As Byte()
Dim index As Integer
Dim count As Integer
Dim returnValue As Integer
returnValue = instance.ReadElementContentAsBase64(buffer, _
index, count)
public override int ReadElementContentAsBase64(
byte[] buffer,
int index,
int count
)
public:
virtual int ReadElementContentAsBase64(
array<unsigned char>^ buffer,
int index,
int count
) override
public override function ReadElementContentAsBase64(
buffer : byte[],
index : int,
count : int
) : int
Parameters
- buffer
- Type: array<System..::.Byte>[]()[]
The buffer into which to copy the resulting text. This value cannot be nullNothingnullptra null reference (Nothing in Visual Basic).
- index
- Type: System..::.Int32
The offset into the buffer where to start copying the result.
- count
- Type: System..::.Int32
The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.
Note: |
|---|
In the .NET Framework version 2.0 release, the recommended practice is to create XmlReader instances using the XmlReader..::.Create method. This allows you to take full advantage of the new features introduced in this release. For more information, see Creating XML Readers. |
This method reads the element content, decodes it using Base64 encoding, and returns the decoded binary bytes (for example, an inline Base64 encoded GIF image) into the buffer. 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.
This method can only read simple-content elements. The element can contain text, white space, significant white space, CDATA sections, comments and processing instructions. It can also contain entity references, which are automatically expanded. The element cannot have child elements.
This method is very similar to the ReadContentAsBase64 method except that it can only be called on element node types.
If the count value is higher than the number of bytes in the document, or if it is equal to the number of bytes in the document, the XmlTextReader reads all the remaining bytes in the document and returns the number of bytes read. The next XmlTextReader method call returns a zero and moves the reader to the node following the EndElement.
If you call Read before all of the element content is consumed, the reader may behave as if the first content was consumed and then the Read method was called. This means that the reader reads all the text until the end element is encountered. It then reads the end tag node, reads the next node, and then positions itself on the next subsequent node.
See XmlReader..::.ReadElementContentAsBase64 to see an example using this method.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0
.NET Compact Framework
Supported in: 3.5, 2.0
XNA Framework
Supported in: 3.0, 2.0, 1.0
Reference
ReadElementContentAsBase64
Other Resources