12 references to XCData
Microsoft.CodeAnalysis.Test.Utilities (1)
InstrumentationChecker.cs (1)
162public XCData ExpectedOutput { get { return new XCData(_consoleExpectations.ToString()); } }
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
CodeGen\AnonymousTypesCodeGenTests.vb (1)
621New XCData(<![CDATA[
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (2)
Semantics\BinaryOperators.vb (1)
968<%= New System.Xml.Linq.XCData(builder.ToString()) %>
Semantics\UnaryOperators.vb (1)
656<%= New System.Xml.Linq.XCData(builder.ToString()) %>
Microsoft.DotNet.Build.Tasks.Installers (1)
src\GenerateMacOSDistributionFile.cs (1)
62var scriptElement = new XElement("script", new XCData(archScriptContent));
Microsoft.VisualStudio.LanguageServices (1)
Snippets\SnippetExpansionClient.cs (1)
702new 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)
487ret = new XCData(reader.Value);
System\Xml\Linq\XNodeBuilder.cs (1)
66AddNode(new XCData(text!));