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






buffer
The character array containing the text to write.
index

The position in the buffer indicating the start of the text to write.

count

The number of characters to write.

Writes text one buffer at a time.

Syntax

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

Parameters

buffer
The character array containing the text to write.
index

The position in the buffer indicating the start of the text to write.

count

The number of characters to write.

See Also