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