26 references to IsLowSurrogate
mscorlib (14)
system\char.cs (2)
878return (IsLowSurrogate(s[index])); 951if (!IsLowSurrogate(lowSurrogate)) {
system\text\encoderbestfitfallback.cs (1)
126if (!Char.IsLowSurrogate(charUnknownLow))
system\text\encoderexceptionfallback.cs (2)
71if (!Char.IsLowSurrogate(charUnknownLow)) 154if (!Char.IsLowSurrogate(charUnknownLow))
system\text\encoderfallback.cs (1)
201if (Char.IsLowSurrogate(cNext))
system\text\encoderreplacementfallback.cs (2)
134char.IsLowSurrogate(strDefault[fallbackIndex+1])) 157if (!Char.IsLowSurrogate(charUnknownLow))
system\text\gb18030encoding.cs (2)
303if (!Char.IsLowSurrogate(ch)) 355else if (Char.IsLowSurrogate(ch))
system\text\utf32encoding.cs (4)
487if (Char.IsLowSurrogate(ch)) 526if (Char.IsLowSurrogate(ch)) 617if (Char.IsLowSurrogate(ch)) 689if (Char.IsLowSurrogate(ch))
PresentationBuildTasks (1)
Framework\System\Windows\Markup\XamlReaderHelper.cs (1)
5469if (char.IsLowSurrogate(lowChar))
PresentationFramework (3)
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (3)
1803if (Char.IsHighSurrogate(testChar) || Char.IsLowSurrogate(testChar) || IsBadCode(testChar)) 1822if (i + 1 < length && Char.IsLowSurrogate(text[i + 1])) 1836else if (Char.IsLowSurrogate(text[i]))
System (2)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
468&& Char.IsLowSurrogate(value[i+1])){
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
484&& Char.IsLowSurrogate(value[i+1])){
System.Runtime.Serialization (1)
System\Runtime\Serialization\Json\XmlJsonReader.cs (1)
1290if (!Char.IsLowSurrogate(lowChar))
System.Web (4)
Security\AntiXss\Utf16StringReader.cs (2)
69Debug.Assert(Char.IsLowSurrogate(trailingSurrogate), "'trailingSurrogate' was not a low surrogate."); 103if (Char.IsLowSurrogate(nextCodeUnit)) {
Util\Utf16StringValidator.cs (2)
50if (Char.IsLowSurrogate(thisChar)) { 58if (i + 1 < chars.Length && Char.IsLowSurrogate(chars[i + 1])) {
System.Workflow.Activities (1)
Rules\CodeDomDecompiler.cs (1)
85if ((char.IsHighSurrogate(c)) && (i + 1 < strValue.Length) && (char.IsLowSurrogate(strValue[i + 1])))