10 references to IsWhitespace
dotnet-svcutil-lib (10)
FrameworkFork\System.Runtime.Serialization\System\Xml\ValueHandle.cs (1)
148return XmlConverter.IsWhitespace((char)ch);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (1)
1461while (j < charCount && XmlConverter.IsWhitespace(chars[j]))
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBufferReader.cs (3)
862if (!XmlConverter.IsWhitespace(s[i])) 873if (!XmlConverter.IsWhitespace((char)buffer[offset + i])) 885if (!XmlConverter.IsWhitespace(ch))
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlConverter.cs (5)
1131if (!IsWhitespace(s[i])) 1147if (IsWhitespace(s[i])) 1159if (!IsWhitespace(ch)) 1170for (i = 0; i < s.Length && IsWhitespace(s[i]); i++) 1173for (j = s.Length; j > 0 && IsWhitespace(s[j - 1]); j--)