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