1 override of CreateTextNode
System.Configuration (1)
System\Configuration\ErrorInfoXmlDocument.cs (1)
95public override XmlText CreateTextNode(String text) {
53 references to CreateTextNode
System.Data (6)
fx\src\data\System\NewXml\XmlDataDocument.cs (6)
625newNode.AppendChild( CreateTextNode( col.ConvertObjectToXml( value ) ) ); 639newNode = CreateTextNode( col.ConvertObjectToXml( value ) ); 969return this.CreateTextNode( dp.Value ); 1391newElem.AppendChild( CreateTextNode( col.ConvertObjectToXml( value ) ) ); 2104n = parent.InsertBefore( CreateTextNode( value ), n ); 2108parent.AppendChild( CreateTextNode( value ) );
System.ServiceModel (13)
System\ServiceModel\Channels\WindowsStreamSecurityBindingElement.cs (1)
172protectionLevelElement.AppendChild(document.CreateTextNode(this.ProtectionLevel.ToString()));
System\ServiceModel\Configuration\UnrecognizedPolicyAssertionElement.cs (1)
123top.InsertBefore(document.CreateTextNode(".."), null);
System\ServiceModel\Security\WSTrust.cs (9)
1298result.AppendChild(doc.CreateTextNode(keySize.ToString(System.Globalization.CultureInfo.InvariantCulture.NumberFormat))); 1348result.AppendChild(doc.CreateTextNode(this.DriverDictionary.SymmetricKeyType.Value)); 1367result.AppendChild(doc.CreateTextNode(this.DriverDictionary.PublicKeyType.Value)); 1396result.AppendChild(doc.CreateTextNode(tokenTypeUri)); 1439result.AppendChild(doc.CreateTextNode(signatureAlgorithm)); 1457result.AppendChild(doc.CreateTextNode(encryptionAlgorithm)); 1470result.AppendChild(doc.CreateTextNode(encryptionAlgorithm)); 1493result.AppendChild(doc.CreateTextNode(algorithm)); 1506result.AppendChild(doc.CreateTextNode(algorithm));
System\ServiceModel\Security\WSTrustDec2005.cs (2)
77result.AppendChild(doc.CreateTextNode(DXD.TrustDec2005Dictionary.BearerKeyType.Value)); 168result.AppendChild(doc.CreateTextNode(keyWrapAlgorithm));
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
7192a_2 = (global::System.Xml.XmlNode[])EnsureArrayIndex(a_2, ca_2, typeof(global::System.Xml.XmlNode)); a_2[ca_2++] = (global::System.Xml.XmlNode)Document.CreateTextNode(Reader.ReadString()); 7257a_3 = (global::System.Xml.XmlNode[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlNode)); a_3[ca_3++] = (global::System.Xml.XmlNode)Document.CreateTextNode(Reader.ReadString());
System.Xml (29)
System\Xml\Dom\DocumentSchemaValidator.cs (2)
345XmlText textNode = document.CreateTextNode(schemaInfo.SchemaElement.ElementDecl.DefaultValueRaw); 388attr.AppendChild(document.CreateTextNode(schemaAttribute.AttDef.DefaultValueRaw));
System\Xml\Dom\DocumentXmlWriter.cs (3)
195XmlNode node = document.CreateTextNode(string.Empty); 233XmlNode node = document.CreateTextNode(string.Empty); 283XmlNode node = document.CreateTextNode(text);
System\Xml\Dom\XmlDocument.cs (2)
808newNode = CreateTextNode( node.Value ); 943return CreateTextNode( string.Empty );
System\Xml\Dom\XmlElement.cs (1)
508AppendChild( OwnerDocument.CreateTextNode( value ) );
System\Xml\Dom\XmlLoader.cs (12)
159node = doc.CreateTextNode( r.Value ); 239node = doc.CreateTextNode( r.Value ); 249node.AppendChildForLoad( doc.CreateTextNode(string.Empty), doc ); 289node = direct ? new XmlText( r.Value, doc ) : doc.CreateTextNode( r.Value ); 301node.AppendChildForLoad( direct ? new XmlText( string.Empty ) : doc.CreateTextNode( string.Empty ), doc ); 328eref.AppendChildForLoad( doc.CreateTextNode(string.Empty), doc ); 768eref.AppendChildForLoad( doc.CreateTextNode( "<" ), doc ); 772eref.AppendChildForLoad( doc.CreateTextNode( ">" ), doc ); 776eref.AppendChildForLoad( doc.CreateTextNode( "&" ), doc ); 780eref.AppendChildForLoad( doc.CreateTextNode( "'" ), doc ); 784eref.AppendChildForLoad( doc.CreateTextNode( "\"" ), doc ); 798eref.AppendChildForLoad( doc.CreateTextNode( "" ), doc );
System\Xml\Dom\XmlNode.cs (1)
816AppendChild( OwnerDocument.CreateTextNode( value ) );
System\Xml\Dom\XmlText.cs (2)
67return OwnerDocument.CreateTextNode( Data ); 101XmlText newTextNode = OwnerDocument.CreateTextNode(splitData);
System\Xml\Schema\Parser.cs (5)
252currentNode = dummyDocument.CreateTextNode( reader.Value ); 358attr.AppendChild(dummyDocument.CreateTextNode(value)); 373attr.AppendChild(dummyDocument.CreateTextNode(r.Value)); 398eref.AppendChild(dummyDocument.CreateTextNode(reader.Value)); 402eref.AppendChild(dummyDocument.CreateTextNode(String.Empty));
System\Xml\Serialization\XmlSchemaExporter.cs (1)
1050e.InsertBefore(d.CreateTextNode(xmlnsMemberName), null);
WindowsBase (3)
Base\MS\Internal\IO\Packaging\XmlSignatureManifest.cs (1)
810XmlText digestValueText = xDoc.CreateTextNode(XmlDigitalSignatureProcessor.GenerateDigestValue(s, transformName, hashAlgorithm));
Base\MS\Internal\IO\Packaging\XmlSignatureProperties.cs (2)
137signatureTimeFormat.AppendChild(xDoc.CreateTextNode(xmlDateTimeFormat)); 138signatureTimeValue.AppendChild(xDoc.CreateTextNode(DateTimeToXmlFormattedTime(dateTime, dateTimeFormats[0])));