43 references to CreateTextNode
dotnet-svcutil-lib (43)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (2)
397XmlText textNode = _document.CreateTextNode(_schemaInfo.SchemaElement.ElementDecl.DefaultValueRaw); 448attr.AppendChild(_document.CreateTextNode(schemaAttribute.AttDef.DefaultValueRaw));
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (3)
228XmlNode node = _document.CreateTextNode(string.Empty); 275XmlNode node = _document.CreateTextNode(string.Empty); 333XmlNode node = _document.CreateTextNode(text);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (2)
918newNode = CreateTextNode(node.Value); 1068return CreateTextNode(string.Empty);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (1)
603AppendChild(OwnerDocument.CreateTextNode(value));
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (12)
184node = _doc.CreateTextNode(r.Value); 276node = _doc.CreateTextNode(r.Value); 288node.AppendChildForLoad(_doc.CreateTextNode(string.Empty), _doc); 333node = direct ? new XmlText(r.Value, _doc) : _doc.CreateTextNode(r.Value); 347node.AppendChildForLoad(direct ? new XmlText(string.Empty) : _doc.CreateTextNode(string.Empty), _doc); 378eref.AppendChildForLoad(_doc.CreateTextNode(string.Empty), _doc); 887eref.AppendChildForLoad(_doc.CreateTextNode("<"), _doc); 891eref.AppendChildForLoad(_doc.CreateTextNode(">"), _doc); 895eref.AppendChildForLoad(_doc.CreateTextNode("&"), _doc); 899eref.AppendChildForLoad(_doc.CreateTextNode("'"), _doc); 903eref.AppendChildForLoad(_doc.CreateTextNode("\""), _doc); 920eref.AppendChildForLoad(_doc.CreateTextNode(""), _doc);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (1)
944AppendChild(OwnerDocument.CreateTextNode(value));
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlText.cs (2)
78return OwnerDocument.CreateTextNode(Data); 118XmlText newTextNode = OwnerDocument.CreateTextNode(splitData);
FrameworkFork\Microsoft.Xml\Xml\schema\Parser.cs (5)
292currentNode = _dummyDocument.CreateTextNode(_reader.Value); 414attr.AppendChild(_dummyDocument.CreateTextNode(value)); 432attr.AppendChild(_dummyDocument.CreateTextNode(r.Value)); 461eref.AppendChild(_dummyDocument.CreateTextNode(_reader.Value)); 466eref.AppendChild(_dummyDocument.CreateTextNode(String.Empty));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
1236e.InsertBefore(d.CreateTextNode(xmlnsMemberName), null);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WindowsStreamSecurityBindingElement.cs (1)
137protectionLevelElement.AppendChild(document.CreateTextNode(this.ProtectionLevel.ToString()));
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrust.cs (9)
693result.AppendChild(doc.CreateTextNode(keySize.ToString(System.Globalization.CultureInfo.InvariantCulture.NumberFormat))); 742result.AppendChild(doc.CreateTextNode(this.DriverDictionary.SymmetricKeyType.Value)); 761result.AppendChild(doc.CreateTextNode(this.DriverDictionary.PublicKeyType.Value)); 790result.AppendChild(doc.CreateTextNode(tokenTypeUri)); 833result.AppendChild(doc.CreateTextNode(signatureAlgorithm)); 851result.AppendChild(doc.CreateTextNode(encryptionAlgorithm)); 864result.AppendChild(doc.CreateTextNode(encryptionAlgorithm)); 887result.AppendChild(doc.CreateTextNode(algorithm)); 900result.AppendChild(doc.CreateTextNode(algorithm));
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustDec2005.cs (2)
76result.AppendChild(doc.CreateTextNode(DXD.TrustDec2005Dictionary.BearerKeyType.Value)); 167result.AppendChild(doc.CreateTextNode(keyWrapAlgorithm));
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (2)
8947a_2 = (Microsoft.Xml.XmlNode[])EnsureArrayIndex(a_2, ca_2, typeof(Microsoft.Xml.XmlNode)); a_2[ca_2++] = (Microsoft.Xml.XmlNode)Document.CreateTextNode(Reader.ReadString()); 9025a_3 = (Microsoft.Xml.XmlNode[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlNode)); a_3[ca_3++] = (Microsoft.Xml.XmlNode)Document.CreateTextNode(Reader.ReadString());