4 instantiations of 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 (3)
333node = direct ? new XmlText(r.Value, _doc) : _doc.CreateTextNode(r.Value); 347node.AppendChildForLoad(direct ? new XmlText(string.Empty) : _doc.CreateTextNode(string.Empty), _doc); 533node = new XmlText(_reader.Value, _doc);
11 references to XmlText
dotnet-svcutil-lib (11)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (1)
397XmlText textNode = _document.CreateTextNode(_schemaInfo.SchemaElement.ElementDecl.DefaultValueRaw);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
680public virtual XmlText CreateTextNode(String text)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlText.cs (2)
105public virtual XmlText SplitText(int offset) 118XmlText newTextNode = OwnerDocument.CreateTextNode(splitData);
FrameworkFork\Microsoft.Xml\Xml\Serialization\Types.cs (1)
900if (typeof(XmlText).IsAssignableFrom(type))
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (2)
1634if (e.LastNode is XmlText) 1636xmlnsMemberName = (((XmlText)e.LastNode).Value).Trim(null);
FrameworkFork\System.ServiceModel\System\IdentityModel\Security\WSTrust.cs (2)
165if (element.FirstChild is XmlText) 167value = ((XmlText)element.FirstChild).Value;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrust.cs (2)
955if (element.FirstChild is XmlText) 957value = ((XmlText)element.FirstChild).Value;