WriteSurrogateCharEntity()

XmlTextWriter::WriteSurrogateCharEntity(char16_t, char16_t) method

Generates and writes the surrogate character entity for the surrogate character pair.

void System::Xml::XmlTextWriter::WriteSurrogateCharEntity(char16_t lowChar, char16_t highChar) override

Arguments

ParameterTypeDescription
lowCharchar16_tThe low surrogate. This must be a value between 0xDC00 and 0xDFFF.
highCharchar16_tThe high surrogate. This must be a value between 0xD800 and 0xDBFF.

See Also