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

Writes raw markup manually from a character buffer.

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

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