IsXmlSurrogatePair()

XmlConvert::IsXmlSurrogatePair(char16_t, char16_t) method

Checks if the passed-in surrogate pair of characters is a valid XML character.

static bool System::Xml::XmlConvert::IsXmlSurrogatePair(char16_t lowChar, char16_t highChar)

Arguments

ParameterTypeDescription
lowCharchar16_tThe surrogate character to validate.
highCharchar16_tThe surrogate character to validate.

Return Value

true if the passed in surrogate pair of characters is a valid XML character; otherwise, false.

See Also