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