4 overrides of CreateTextNode
Microsoft.Build (1)
ElementLocation\XmlDocumentWithLocation.cs (1)
267public override XmlText CreateTextNode(string text)
System.Configuration.ConfigurationManager (2)
System\Configuration\ConfigXmlDocument.cs (1)
103public override XmlText CreateTextNode(string text)
System\Configuration\ErrorInfoXmlDocument.cs (1)
96public override XmlText CreateTextNode(string text)
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\CanonicalXmlDocument.cs (1)
79public override XmlText CreateTextNode(string? text)
62 references to CreateTextNode
Microsoft.Build (3)
Construction\ProjectElement.cs (2)
390XmlElement.AppendChild(XmlElement.OwnerDocument.CreateTextNode(pureText)); 409XmlElement.AppendChild(XmlElement.OwnerDocument.CreateTextNode(element.XmlElement.FirstChild.Value));
ElementLocation\XmlDocumentWithLocation.cs (1)
270return base.CreateTextNode(textNode);
ReachFramework (1)
PrintConfig\PrintSchemaShim.cs (1)
142XmlText textNode = ticket.XmlDoc.CreateTextNode(Convert.ToBase64String(devMode.ByteData, Base64FormattingOptions.None));
System.Data.Common (6)
System\Xml\XmlDataDocument.cs (6)
690newNode.AppendChild(CreateTextNode(col.ConvertObjectToXml(value))); 708newNode = CreateTextNode(col.ConvertObjectToXml(value)); 1064XmlNodeType.Text => CreateTextNode(dp.Value), 1556newElem.AppendChild(CreateTextNode(col.ConvertObjectToXml(value))); 2338n = parent.InsertBefore(CreateTextNode(value), n); 2343parent.AppendChild(CreateTextNode(value));
System.Private.Xml (30)
System\Xml\Dom\DocumentSchemaValidator.cs (2)
377XmlText textNode = _document.CreateTextNode(_schemaInfo.SchemaElement!.ElementDecl!.DefaultValueRaw); 425attr.AppendChild(_document.CreateTextNode(schemaAttribute.AttDef!.DefaultValueRaw));
System\Xml\Dom\DocumentXmlWriter.cs (3)
223XmlNode node = _document.CreateTextNode(string.Empty); 273XmlNode node = _document.CreateTextNode(string.Empty); 332XmlNode node = _document.CreateTextNode(text);
System\Xml\Dom\XmlDocument.cs (2)
983newNode = CreateTextNode(node.Value); 1128return CreateTextNode(string.Empty);
System\Xml\Dom\XmlElement.cs (1)
610AppendChild(OwnerDocument.CreateTextNode(value));
System\Xml\Dom\XmlLoader.cs (12)
178node = _doc!.CreateTextNode(r.Value); 272node = _doc.CreateTextNode(r.Value); 284node.AppendChildForLoad(_doc.CreateTextNode(string.Empty), _doc); 329node = direct ? new XmlText(r.Value, _doc!) : _doc!.CreateTextNode(r.Value); 343node.AppendChildForLoad(direct ? new XmlText(string.Empty) : _doc!.CreateTextNode(string.Empty), _doc!); 374eref.AppendChildForLoad(_doc!.CreateTextNode(string.Empty), _doc); 883eref.AppendChildForLoad(_doc.CreateTextNode("<"), _doc); 887eref.AppendChildForLoad(_doc.CreateTextNode(">"), _doc); 891eref.AppendChildForLoad(_doc.CreateTextNode("&"), _doc); 895eref.AppendChildForLoad(_doc.CreateTextNode("'"), _doc); 899eref.AppendChildForLoad(_doc.CreateTextNode("\""), _doc); 916eref.AppendChildForLoad(_doc.CreateTextNode(""), _doc);
System\Xml\Dom\XmlNode.cs (1)
959AppendChild(OwnerDocument!.CreateTextNode(value));
System\Xml\Dom\XmlText.cs (2)
77return OwnerDocument.CreateTextNode(Data); 116XmlText newTextNode = OwnerDocument!.CreateTextNode(splitData);
System\Xml\Schema\Parser.cs (5)
289currentNode = _dummyDocument.CreateTextNode(_reader.Value); 411attr.AppendChild(_dummyDocument.CreateTextNode(value)); 429attr.AppendChild(_dummyDocument.CreateTextNode(r.Value)); 458eref.AppendChild(_dummyDocument.CreateTextNode(_reader.Value)); 463eref.AppendChild(_dummyDocument.CreateTextNode(string.Empty));
System\Xml\Serialization\ReflectionXmlSerializationReader.cs (1)
688value = Document.CreateTextNode(Reader.ReadString());
System\Xml\Serialization\XmlSchemaExporter.cs (1)
1193e.InsertBefore(d.CreateTextNode(xmlnsMemberName), null);
System.Security.Cryptography.Xml (22)
System\Security\Cryptography\Xml\CipherData.cs (1)
84cipherValueElement.AppendChild(document.CreateTextNode(Convert.ToBase64String(CipherValue)));
System\Security\Cryptography\Xml\DSAKeyValue.cs (7)
100pElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(dsaParams.P!))); 104qElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(dsaParams.Q!))); 108gElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(dsaParams.G!))); 112yElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(dsaParams.Y!))); 119jElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(dsaParams.J))); 126seedElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(dsaParams.Seed))); 130counterElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(Utils.ConvertIntToByteArray(dsaParams.Counter))));
System\Security\Cryptography\Xml\EncryptedKey.cs (1)
212XmlText carriedKeyNameText = document.CreateTextNode(CarriedKeyName);
System\Security\Cryptography\Xml\EncryptionMethod.cs (1)
76keySizeElement.AppendChild(document.CreateTextNode(_keySize.ToString(null, null)));
System\Security\Cryptography\Xml\KeyInfoName.cs (1)
47nameElement.AppendChild(xmlDocument.CreateTextNode(_keyName));
System\Security\Cryptography\Xml\KeyInfoX509Data.cs (6)
231issuerNameElement.AppendChild(xmlDocument.CreateTextNode(issuerSerial.IssuerName)); 234serialNumberElement.AppendChild(xmlDocument.CreateTextNode(issuerSerial.SerialNumber)); 245subjectKeyIdElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(subjectKeyId))); 255subjectNameElement.AppendChild(xmlDocument.CreateTextNode(subjectName)); 265x509Element.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(certificate.GetRawCertData()))); 273crlElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(_CRL)));
System\Security\Cryptography\Xml\Reference.cs (1)
201digestValueElement.AppendChild(document.CreateTextNode(Convert.ToBase64String(_digestValue!)));
System\Security\Cryptography\Xml\RSAKeyValue.cs (2)
82modulusElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(rsaParams.Modulus!))); 86exponentElement.AppendChild(xmlDocument.CreateTextNode(Convert.ToBase64String(rsaParams.Exponent!)));
System\Security\Cryptography\Xml\Signature.cs (1)
110signatureValueElement.AppendChild(document.CreateTextNode(Convert.ToBase64String(_signatureValue)));
System\Security\Cryptography\Xml\SignedInfo.cs (1)
185XmlText outputLength = document.CreateTextNode(_signatureLength);