12 references to XCData
Microsoft.CodeAnalysis.Test.Utilities (1)
InstrumentationChecker.cs (1)
162public XCData ExpectedOutput { get { return new XCData(_consoleExpectations.ToString()); } }
Microsoft.DotNet.Build.Tasks.Installers (1)
src\GenerateMacOSDistributionFile.cs (1)
62var scriptElement = new XElement("script", new XCData(archScriptContent));
Microsoft.NET.Sdk.StaticWebAssets.Tasks (3)
GenerateStaticWebAssetEndpointsPropsFile.cs (3)
57new XElement(nameof(StaticWebAssetEndpoint.Selectors), new XCData(StaticWebAssetEndpointSelector.ToMetadataValue(element.Selectors))), 58new XElement(nameof(StaticWebAssetEndpoint.EndpointProperties), new XCData(StaticWebAssetEndpointProperty.ToMetadataValue(element.EndpointProperties))), 59new XElement(nameof(StaticWebAssetEndpoint.ResponseHeaders), new XCData(StaticWebAssetEndpointResponseHeader.ToMetadataValue(element.ResponseHeaders)))));
Microsoft.VisualStudio.LanguageServices (1)
Snippets\SnippetExpansionClient.cs (1)
700new XCData(template.ToString()))))));
System.Private.Xml.Linq (6)
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 (1)
484ret = new XCData(reader.Value);
System\Xml\Linq\XNodeBuilder.cs (1)
66AddNode(new XCData(text!));