Is c a whitespace character that is normalized to a space character when it appears in an XML attribute value?
| 4320 | // Is c a whitespace character that is normalized to a space character |
| 4321 | // when it appears in an XML attribute value? |
| 4322 | static bool IsNormalizableWhitespace(char c) { |
| 4323 | return c == 0x9 || c == 0xA || c == 0xD; |
| 4324 | } |
| 4325 | |
| 4326 | // May c appear in a well-formed XML document? |
| 4327 | static bool IsValidXmlCharacter(char c) { |
nothing calls this directly
no outgoing calls
no test coverage detected