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!

XmlTextWriter.WriteChars

Writes text a buffer at a time.

[Visual Basic]
Overrides Public Sub WriteChars( _
   ByVal buffer() As Char, _
   ByVal index As Integer, _
   ByVal count As Integer _
)
[C#]
public override void WriteChars(
   char[] buffer,
   int index,
   int count
);
[C++]
public: override void WriteChars(
   __wchar_t* buffer[],
   int index,
   int count
);
[JScript]
public override 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

XmlTextWriter Class | XmlTextWriter Members | System.NewXml Namespace