1 type derived from XText
System.Xml.Linq (1)
System\Xml\Linq\XLinq.cs (1)
2265public class XCData : XText
11 instantiations of XText
System.Xml.Linq (11)
System\Xml\Linq\XLinq.cs (11)
1836return new XText(reader); 2250return new XText(this); 2359XText t = new XText(s); 2780AppendNode(new XText(s)); 2803AppendNode(new XText(s)); 2823AppendNodeSkipNotify(new XText(s)); 2930XText t = new XText(s); 3153n = new XText(r.Value); 3296InsertNode(new XText(text)); 3319InsertNode(new XText(text)); 3373InsertNode(new XText(text));
53 references to XText
System.Data.Services.Client (1)
System\Data\Services\Client\AtomMaterializer.cs (1)
1480string elementValue = (node == null) ? null : ((XText)node).Value;
System.Data.Services.Design (2)
System\Data\Services\Design\Xml\XNodeSchemaApplier.cs (2)
468XText text = node as XText;
System.Xml.Linq (50)
System\Xml\Linq\XComponentModel.cs (2)
337if (sender is XElement || sender is XText) { 342if (sender is XText) {
System\Xml\Linq\XLinq.cs (23)
1453/// <see cref="XText"/>, 1922/// <see cref="XText"/> nodes are equal if they contain the same text. Two 2010if (this is XText) ws.ConformanceLevel = ConformanceLevel.Fragment; 2098/// <see cref="XText"/> nodes are equal if they contain the same text. Two 2136/// <see cref="XText"/> nodes are equal if they contain the same text. Two 2192public XText(XText other) { 2230/// Write this <see cref="XText"/> to the given <see cref="XmlWriter"/>. 2233/// The <see cref="XmlWriter"/> to write this <see cref="XText"/> to. 2254return node != null && NodeType == node.NodeType && text == ((XText)node).text; 2359XText t = new XText(s); 2798XText tn = content as XText; 2818XText tn = content as XText; 2873s += ((XText)n).Value; 2882s += ((XText)n).Value; 2930XText t = new XText(s); 3314if (previous is XText && !(previous is XCData)) { 3315((XText)previous).Value += text; 3369if (previous is XText && !(previous is XCData)) { 3370((XText)previous).Value += text; 5998ValidateString(((XText)node).Value); 8352return ((XText)o).Value;
System\Xml\Linq\XNodeNavigator.cs (23)
252return CollectText((XText)o); 473if (IsContent(c, next) && !(n is XText && next is XText)) { 515if (((1 << (int)next.NodeType) & mask) != 0 && !(n is XText && next is XText)) { 604p = p is XText && q is XText ? p : q; 651static string CollectText(XText n) { 655n = n.next as XText; 684XText t1 = n1.source as XText; 688XText t2 = n2.source as XText; 794XText t = r as XText; 797t = t.next as XText; 830XText text = node as XText; 908static XText CalibrateText(XText n) { 915XText t = p as XText; 922} while (p is XText);
System\Xml\Linq\XNodeValidator.cs (2)
280XText t = n as XText;