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.WriteCharEntity

Forces the generation of a character entity for the specified Unicode character value.

[Visual Basic]
MustOverride Public Sub WriteCharEntity( _
   ByVal ch As Char _
)
[C#]
public abstract void WriteCharEntity(
   char ch
);
[C++]
public: virtual void WriteCharEntity(
   __wchar_t ch
) = 0;
[JScript]
public abstract function WriteCharEntity(
   ch : Char
);

Parameters

ch
Unicode character for which to generate a character entity.

Remarks

This method writes the specified Unicode character in hexidecimal format.

See Also

XmlWriter Class | XmlWriter Members | System.NewXml Namespace