12 instantiations of XCData
Microsoft.DotNet.Build.Tasks.Installers (1)
src\GenerateMacOSDistributionFile.cs (1)
62
var scriptElement = new XElement("script", new
XCData
(archScriptContent));
Microsoft.NET.Sdk.StaticWebAssets.Tasks (3)
GenerateStaticWebAssetEndpointsPropsFile.cs (3)
57
new XElement(nameof(StaticWebAssetEndpoint.Selectors), new
XCData
(StaticWebAssetEndpointSelector.ToMetadataValue(element.Selectors))),
58
new XElement(nameof(StaticWebAssetEndpoint.EndpointProperties), new
XCData
(StaticWebAssetEndpointProperty.ToMetadataValue(element.EndpointProperties))),
59
new XElement(nameof(StaticWebAssetEndpoint.ResponseHeaders), new
XCData
(StaticWebAssetEndpointResponseHeader.ToMetadataValue(element.ResponseHeaders)))));
System.Private.Xml.Linq (8)
System\Xml\Linq\XCData.cs (1)
78
return 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)));
1086
newNode = new
XCData
(r.Value);
1202
newNode = new
XCData
(await r.GetValueAsync().ConfigureAwait(false));
System\Xml\Linq\XNode.cs (2)
435
return new
XCData
(reader);
484
ret = new
XCData
(reader.Value);
System\Xml\Linq\XNodeBuilder.cs (1)
66
AddNode(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)
24
public 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)
573
if (tn != null && !(tn is
XCData
))
601
if (tn != null && !(tn is
XCData
))
System\Xml\Linq\XLinq.cs (2)
64
if (prevXText != null && !(_previous is
XCData
))
133
if (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)
src\runtime\artifacts\obj\System.Xml.XDocument\Release\net11.0\System.Xml.XDocument.Forwards.cs (1)
8
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Linq.
XCData
))]