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






buffer
The buffer containing characters to add.
index
The offset of the first character in buffer.
count
The number of characters to add into vocabulary.
Adds the string of characters to the vocabulary content string table.

Syntax

Visual Basic (Declaration) 
Public Overrides Sub WriteChars( _
   ByVal buffer() As Char, _
   ByVal index As Integer, _
   ByVal count As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As VocabularyWriter
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 buffer containing characters to add.
index
The offset of the first character in buffer.
count
The number of characters to add into vocabulary.

See Also