23 references to XText
Microsoft.CodeAnalysis.CSharp (1)
Syntax\SyntaxFactory.cs (1)
1179string encoded = new XText(value).ToString();
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Workspaces\WorkspaceTests_EditorFeatures.cs (1)
858<DocumentFromSourceGenerator FilePath=""test1.cs"">{new XText(doc1Text)}</DocumentFromSourceGenerator>
Microsoft.CodeAnalysis.VisualBasic (1)
Syntax\SyntaxFactory.vb (1)
902Dim encoded As String = New XText(value).ToString()
Microsoft.VisualStudio.LanguageServices (6)
Snippets\SnippetExpansionClient.cs (6)
659new XElement(snippetNamespace + "ID", new XText(parameter.Name)), 660new XElement(snippetNamespace + "Default", new XText(parameterValues.GetValueOrDefault(parameter.Name, ""))))); 671new XElement(snippetNamespace + "ID", new XText(PlaceholderSnippetField)), 672new XElement(snippetNamespace + "Default", new XText("")))); 694new XElement(snippetNamespace + "Title", new XText(methodName)), 695new XElement(snippetNamespace + "Description", new XText(s_fullMethodCallDescriptionSentinel))),
System.Private.Xml.Linq (12)
System\Xml\Linq\XCData.cs (1)
18public XCData(string value) : base(value) { }
System\Xml\Linq\XContainer.cs (7)
75XText t = new XText(s); 550AppendNode(new XText(s)); 579AppendNode(new XText(s)); 607AppendNodeSkipNotify(new XText(s)); 737XText t = new XText(s); 1078newNode = new XText(r.Value); 1194newNode = new XText(await r.GetValueAsync().ConfigureAwait(false));
System\Xml\Linq\XLinq.cs (3)
41InsertNode(new XText(_text)); 71InsertNode(new XText(_text)); 139InsertNode(new XText(_text));
System\Xml\Linq\XNode.cs (1)
484ret = new XText(reader.Value);
XmlFileLogger (2)
ObjectModel\Item.cs (1)
86element.Add(new XText(Text));
ObjectModel\Message.cs (1)
36element.Add(new XElement("Message", new XAttribute("Timestamp", _timestamp), new XText(_message)));