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.WriteRaw (Char[], Int32, Int32)

Writes raw markup manually from a character buffer.

[Visual Basic]
Overloads MustOverride Public Sub WriteRaw( _
   ByVal buffer() As Char, _
   ByVal index As Integer, _
   ByVal count As Integer _
)
[C#]
public abstract void WriteRaw(
   char[] buffer,
   int index,
   int count
);
[C++]
public: virtual void WriteRaw(
   __wchar_t* buffer[],
   int index,
   int count
) = 0;
[JScript]
public abstract function WriteRaw(
   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.

Remarks

This bypasses the entitization of special characters.

See Also

XmlWriter Class | XmlWriter Members | System.NewXml Namespace | XmlWriter.WriteRaw Overload List