4 references to XmlText
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
682return new XmlText(text, this);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (2)
333node = direct ? new XmlText(r.Value, _doc) : _doc.CreateTextNode(r.Value); 533node = new XmlText(_reader.Value, _doc);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlText.cs (1)
15internal XmlText(string strData) : this(strData, null)