9 instantiations of XCData
Microsoft.DotNet.Build.Tasks.Installers (1)
src\GenerateMacOSDistributionFile.cs (1)
62var scriptElement = new XElement("script", new XCData(archScriptContent));
System.Private.Xml.Linq (8)
System\Xml\Linq\XCData.cs (1)
78return new XCData(this);
System\Xml\Linq\XContainer.cs (4)
932_currentContainer.AddNodeSkipNotify(new XCData(r.Value)); 988_currentContainer.AddNodeSkipNotify(new XCData(await r.GetValueAsync().ConfigureAwait(false))); 1086newNode = new XCData(r.Value); 1202newNode = new XCData(await r.GetValueAsync().ConfigureAwait(false));
System\Xml\Linq\XNode.cs (2)
438return new XCData(reader); 487ret = new XCData(reader.Value);
System\Xml\Linq\XNodeBuilder.cs (1)
66AddNode(new XCData(text!));
12 references to XCData
netstandard (1)
netstandard.cs (1)
2267[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Linq.XCData))]
System.Private.Xml.Linq (9)
System\Xml\Linq\XCData.cs (5)
24public XCData(XCData other) : base(other) { } 43/// Write this <see cref="XCData"/> to the given <see cref="XmlWriter"/>. 46/// The <see cref="XmlWriter"/> to write this <see cref="XCData"/> to. 56/// Write this <see cref="XCData"/> to the given <see cref="XmlWriter"/>. 59/// The <see cref="XmlWriter"/> to write this <see cref="XCData"/> to.
System\Xml\Linq\XContainer.cs (2)
573if (tn != null && !(tn is XCData)) 601if (tn != null && !(tn is XCData))
System\Xml\Linq\XLinq.cs (2)
64if (prevXText != null && !(_previous is XCData)) 133if (prevXText != null && !(_previous is XCData))
System.Xml.Linq (1)
System.Xml.Linq.cs (1)
9[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Linq.XCData))]
System.Xml.XDocument (1)
artifacts\obj\System.Xml.XDocument\Debug\net9.0\System.Xml.XDocument.Forwards.cs (1)
8[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Linq.XCData))]