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