6 references to CreateComment
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (1)
293XmlNode node = _document.CreateComment(text);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlComment.cs (1)
41return OwnerDocument.CreateComment(Data);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (2)
921newNode = CreateComment(node.Value); 1083return CreateComment(string.Empty);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (1)
220node = _doc.CreateComment(r.Value);
FrameworkFork\Microsoft.Xml\Xml\schema\Parser.cs (1)
308currentNode = _dummyDocument.CreateComment(_reader.Value);