26 references to IsLowSurrogate
dotnet-svcutil-lib (26)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
3555if (!XmlCharType.IsLowSurrogate(chNext))
FrameworkFork\Microsoft.Xml\Xml\Core\XmlEncodedRawTextWriter.cs (2)
1759if (XmlCharType.IsLowSurrogate(chars[i + 1])) 1768else if (XmlCharType.IsLowSurrogate(chars[i]))
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextEncoder.cs (6)
106if (!XmlCharType.IsLowSurrogate(lowChar) || 227else if (XmlCharType.IsLowSurrogate(ch)) 244if (!XmlCharType.IsLowSurrogate(lowChar) || 386else if (XmlCharType.IsLowSurrogate(ch)) 447if (XmlCharType.IsLowSurrogate(lowChar)) 459else if (XmlCharType.IsLowSurrogate(ch))
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (7)
5418if (XmlCharType.IsLowSurrogate(chars[pos])) 5817if (XmlCharType.IsLowSurrogate(chars[pos])) 6541if (XmlCharType.IsLowSurrogate(chars[pos])) 6758if (XmlCharType.IsLowSurrogate(chars[pos])) 7147if (XmlCharType.IsLowSurrogate(chars[pos])) 7440if (XmlCharType.IsLowSurrogate(low)) 8810if (XmlCharType.IsLowSurrogate(chars[pos]))
FrameworkFork\Microsoft.Xml\Xml\Core\XmlUtf8RawTextWriter.cs (2)
1639if (XmlCharType.IsLowSurrogate(chars[i + 1])) 1648else if (XmlCharType.IsLowSurrogate(chars[i]))
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (2)
2625if (XmlCharType.IsLowSurrogate(_chars[_curPos])) 2980if (XmlCharType.IsLowSurrogate(_chars[_curPos]))
FrameworkFork\Microsoft.Xml\Xml\XmlCharType.cs (1)
688if (i + 1 >= str.Length || !(XmlCharType.IsHighSurrogate(str[i]) && XmlCharType.IsLowSurrogate(str[i + 1])))
FrameworkFork\Microsoft.Xml\Xml\XmlConvert.cs (5)
234if (length > 1 && XmlCharType.IsHighSurrogate(name[0]) && XmlCharType.IsLowSurrogate(name[1])) 279if ((length > position + 1) && XmlCharType.IsHighSurrogate(name[position]) && XmlCharType.IsLowSurrogate(name[position + 1])) 641return XmlCharType.IsHighSurrogate(highChar) && XmlCharType.IsLowSurrogate(lowChar); 1651if (XmlCharType.IsLowSurrogate(ch)) 1693if (XmlCharType.IsLowSurrogate(ch))