21 references to WhitespaceHandling
dotnet-svcutil-lib (21)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReaderSettings.cs (3)
688WhitespaceHandling wh = WhitespaceHandling.All; 694if (wh == WhitespaceHandling.All)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReader.cs (1)
396public WhitespaceHandling WhitespaceHandling
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (9)
196private WhitespaceHandling _whitespaceHandling; 355_whitespaceHandling = WhitespaceHandling.All; 421_whitespaceHandling = (settings.IgnoreWhitespace) ? WhitespaceHandling.Significant : WhitespaceHandling.All; 853settings.IgnoreWhitespace = (_whitespaceHandling == WhitespaceHandling.Significant); 2100internal WhitespaceHandling WhitespaceHandling 2115if ((uint)value > (uint)WhitespaceHandling.None) 8004if (_whitespaceHandling != WhitespaceHandling.None) 8010if (_whitespaceHandling == WhitespaceHandling.All)
FrameworkFork\Microsoft.Xml\Xml\Serialization\IXmlTextParser.cs (1)
20WhitespaceHandling WhitespaceHandling { get; set; }
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCountingReader.cs (2)
374WhitespaceHandling IXmlTextParser.WhitespaceHandling 382return (xmlTextParser == null) ? WhitespaceHandling.None : xmlTextParser.WhitespaceHandling;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializer.cs (2)
410xmlReader.WhitespaceHandling = WhitespaceHandling.Significant; 423xmlReader.WhitespaceHandling = WhitespaceHandling.Significant;
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (1)
2117reader.WhitespaceHandling = WhitespaceHandling.Significant;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (2)
351reader.WhitespaceHandling = WhitespaceHandling.Significant; 364reader.WhitespaceHandling = WhitespaceHandling.Significant;