2 types derived from XmlText
System.Configuration.ConfigurationManager (1)
System\Configuration\ConfigXmlText.cs (1)
9internal sealed class ConfigXmlText : XmlText, IConfigErrorInfo
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\CanonicalXmlText.cs (1)
10internal sealed class CanonicalXmlText : XmlText, ICanonicalizableNode
4 instantiations of XmlText
System.Private.Xml (4)
System\Xml\Dom\XmlDocument.cs (1)
745return new XmlText(text, this);
System\Xml\Dom\XmlLoader.cs (3)
329node = direct ? new XmlText(r.Value, _doc!) : _doc!.CreateTextNode(r.Value); 343node.AppendChildForLoad(direct ? new XmlText(string.Empty) : _doc!.CreateTextNode(string.Empty), _doc!); 530node = new XmlText(_reader!.Value, _doc!);
22 references to XmlText
Microsoft.Build (1)
ElementLocation\XmlDocumentWithLocation.cs (1)
289public override XmlText CreateTextNode(string text)
Microsoft.Build.Engine.UnitTests (1)
Evaluation\ProjectStringCache_Tests.cs (1)
145XmlText newText = document2.CreateTextNode("New Value");
netstandard (1)
netstandard.cs (1)
2502[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XmlText))]
ReachFramework (1)
PrintConfig\PrintSchemaShim.cs (1)
142XmlText textNode = ticket.XmlDoc.CreateTextNode(Convert.ToBase64String(devMode.ByteData, Base64FormattingOptions.None));
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.Data.Common (1)
System\Data\DataSet.cs (1)
2244if (root.ChildNodes.Count == 0 || ((root.ChildNodes.Count == 1) && root.FirstChild!.GetType() == typeof(System.Xml.XmlText)))
System.Private.Xml (7)
System\Xml\Dom\DocumentSchemaValidator.cs (1)
377XmlText textNode = _document.CreateTextNode(_schemaInfo.SchemaElement!.ElementDecl!.DefaultValueRaw);
System\Xml\Dom\XmlDocument.cs (1)
743public virtual XmlText CreateTextNode(string? text)
System\Xml\Dom\XmlText.cs (2)
104public virtual XmlText SplitText(int offset) 116XmlText newTextNode = OwnerDocument!.CreateTextNode(splitData);
System\Xml\Serialization\Types.cs (1)
868if (typeof(XmlText).IsAssignableFrom(type))
System\Xml\Serialization\XmlSchemaImporter.cs (2)
1494if (e.LastNode is XmlText) 1496xmlnsMemberName = (((XmlText)e.LastNode).Value!).Trim(null);
System.Security.Cryptography.Xml (3)
System\Security\Cryptography\Xml\CanonicalXmlDocument.cs (1)
79public override XmlText CreateTextNode(string? text)
System\Security\Cryptography\Xml\EncryptedKey.cs (1)
212XmlText carriedKeyNameText = document.CreateTextNode(CarriedKeyName);
System\Security\Cryptography\Xml\SignedInfo.cs (1)
185XmlText outputLength = document.CreateTextNode(_signatureLength);
System.ServiceModel.Primitives (2)
System\IdentityModel\Security\WSTrust.cs (2)
167if (element.FirstChild is XmlText) 169value = ((XmlText)element.FirstChild).Value;
System.Xml (1)
System.Xml.cs (1)
231[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XmlText))]
System.Xml.ReaderWriter (1)
artifacts\obj\System.Xml.ReaderWriter\Debug\net9.0\System.Xml.ReaderWriter.Forwards.cs (1)
159[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XmlText))]
System.Xml.XmlDocument (1)
System.Xml.XmlDocument.cs (1)
23[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XmlText))]