4 overrides of CreateWhitespace
Microsoft.Build (1)
ElementLocation\XmlDocumentWithLocation.cs (1)
236public override XmlWhitespace CreateWhitespace(string text)
System.Configuration.ConfigurationManager (2)
System\Configuration\ConfigXmlDocument.cs (1)
123public override XmlWhitespace CreateWhitespace(string data)
System\Configuration\ErrorInfoXmlDocument.cs (1)
116public override XmlWhitespace CreateWhitespace(string data)
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\CanonicalXmlDocument.cs (1)
84public override XmlWhitespace CreateWhitespace(string? prefix)
7 references to CreateWhitespace
Microsoft.Build (1)
ElementLocation\XmlDocumentWithLocation.cs (1)
244return base.CreateWhitespace(interned);
System.Data.Common (1)
System\Xml\XmlDataDocument.cs (1)
1068XmlNodeType.Whitespace => CreateWhitespace(dp.Value),
System.Private.Xml (5)
System\Xml\Dom\DocumentXmlWriter.cs (1)
323XmlNode node = _document.CreateWhitespace(text);
System\Xml\Dom\XmlDocument.cs (2)
1015newNode = CreateWhitespace(node.Value); 1158return CreateWhitespace(string.Empty);
System\Xml\Dom\XmlLoader.cs (1)
188node = _doc!.CreateWhitespace(r.Value);
System\Xml\Dom\XmlWhitespace.cs (1)
89return OwnerDocument.CreateWhitespace(Data);