3 writes to IgnoreWhitespace
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
445settings.IgnoreWhitespace = _ignoreWhitespace;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlCharCheckingReader.cs (1)
99settings.IgnoreWhitespace = true;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (1)
853settings.IgnoreWhitespace = (_whitespaceHandling == WhitespaceHandling.Significant);
3 references to IgnoreWhitespace
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
417_ignoreWhitespace = settings.IgnoreWhitespace;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReaderSettings.cs (1)
735if (_ignoreWhitespace && !baseReaderSettings.IgnoreWhitespace)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (1)
421_whitespaceHandling = (settings.IgnoreWhitespace) ? WhitespaceHandling.Significant : WhitespaceHandling.All;