Noemax FastInfoset.NET
WriteBase64 Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class : WriteBase64 Method






buffer
the byte array to encode.
index
The position within the buffer indicating the start of the bytes to write.
count
The number of bytes to write.
Encodes the binary bytes using Fast Infoset's binary encoding of Base64 values and writes the result at the current position in the content.

Syntax

Visual Basic (Declaration) 
Public Overrides NotOverridable Sub WriteBase64( _
   ByVal buffer() As Byte, _
   ByVal index As Integer, _
   ByVal count As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim buffer() As Byte
Dim index As Integer
Dim count As Integer
 
instance.WriteBase64(buffer, index, count)
C# 
public override void WriteBase64( 
   byte[] buffer,
   int index,
   int count
)
Delphi 
public procedure WriteBase64( 
    buffer: Bytearray of;
    index: Integer;
    count: Integer
); override; 
JScript 
public override function WriteBase64( 
   buffer : byte[],
   index : int,
   count : int
);
Managed Extensions for C++ 
public: void WriteBase64( 
   byte[]* buffer,
   int index,
   int count
) override 
C++/CLI 
public:
void WriteBase64( 
   array<byte>^ buffer,
   int index,
   int count
) override 

Parameters

buffer
the byte array to encode.
index
The position within the buffer indicating the start of the bytes to write.
count
The number of bytes to write.

See Also