NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlWriter.WriteChars

Writes text a buffer at a time.

[Visual Basic]
MustOverride Public Sub WriteChars( _
   ByVal buffer() As Char, _
   ByVal index As Integer, _
   ByVal count As Integer _
)
[C#]
public abstract void WriteChars(
   char[] buffer,
   int index,
   int count
);
[C++]
public: virtual void WriteChars(
   __wchar_t* buffer[],
   int index,
   int count
) = 0;
[JScript]
public abstract function WriteChars(
   buffer : Char[],
   index : int,
   count : int
);

Parameters

buffer
Character array containing the text to write.
index
The position within buffer indicating the start of the text to write.
count
The number of characters to write.

See Also

XmlWriter Class | XmlWriter Members | System.NewXml Namespace