15 writes to type
System.ServiceModel (15)
System\ServiceModel\Dispatcher\SeekableMessageNavigator.cs (15)
79
BlankDom[RootIndex].
type
= XPathNodeType.Root;
86
BlankDom[EnvelopeIndex].
type
= XPathNodeType.Element;
95
BlankDom[SoapNSIndex].
type
= XPathNodeType.Namespace;
102
BlankDom[XmlNSIndex].
type
= XPathNodeType.Namespace;
109
BlankDom[HeaderIndex].
type
= XPathNodeType.Element;
1187
this.nodes[i].
type
= XPathNodeType.Element;
1203
this.nodes[bodyIndex].
type
= XPathNodeType.Element;
1895
this.nodes[a].
type
= XPathNodeType.Attribute;
1915
this.nodes[n].
type
= XPathNodeType.Namespace;
1940
this.nodes[n].
type
= XPathNodeType.Element;
1966
this.nodes[n].
type
= XPathNodeType.Comment;
1975
this.nodes[n].
type
= XPathNodeType.ProcessingInstruction;
1998
this.nodes[n].
type
= XPathNodeType.SignificantWhitespace;
2026
this.nodes[n].
type
= XPathNodeType.Whitespace;
2052
this.nodes[n].
type
= XPathNodeType.Text;
30 references to type
System.ServiceModel (30)
System\ServiceModel\Dispatcher\SeekableMessageNavigator.cs (30)
292
return this.dom.nodes[this.location].
type
;
528
return this.dom.nodes[this.dom.DecodePosition(pos).elem].
type
;
569
XPathNodeType type = this.dom.nodes[nav.location].
type
;
576
type = this.dom.nodes[this.location].
type
;
700
if (this.dom.nodes[this.location].
type
!= XPathNodeType.Element)
733
XPathNodeType t = this.dom.nodes[this.location].
type
;
759
if (this.dom.nodes[this.location].
type
!= XPathNodeType.Element)
784
if (this.location == RootIndex || this.dom.nodes[this.location].
type
== XPathNodeType.Element)
805
if (this.dom.nodes[this.location].
type
!= XPathNodeType.Element)
852
if (this.dom.nodes[this.location].
type
!= XPathNodeType.Element)
911
XPathNodeType type = this.dom.nodes[this.location].
type
;
933
if (this.dom.nodes[this.location].
type
!= XPathNodeType.Attribute)
954
if (this.dom.nodes[this.location].
type
!= XPathNodeType.Namespace)
1001
XPathNodeType t = this.dom.nodes[this.location].
type
;
1352
if (this.nodes[loc1].
type
== XPathNodeType.Attribute)
1370
if (this.nodes[loc2].
type
== XPathNodeType.Attribute)
1387
XPathNodeType type1 = this.nodes[loc1].
type
;
1388
XPathNodeType type2 = this.nodes[loc2].
type
;
1462
if (p.parent > NullIndex && p.parent < this.nextFreeIndex && this.nodes[p.parent].
type
== XPathNodeType.Element && this.nodes[p.elem].
type
== XPathNodeType.Namespace)
1614
switch (this.nodes[elem].
type
)
1989
if (n != NullIndex && (this.nodes[n].
type
== XPathNodeType.Text ||
1990
this.nodes[n].
type
== XPathNodeType.Whitespace ||
1991
this.nodes[n].
type
== XPathNodeType.SignificantWhitespace))
2017
if (n != NullIndex && (this.nodes[n].
type
== XPathNodeType.Text ||
2018
this.nodes[n].
type
== XPathNodeType.Whitespace ||
2019
this.nodes[n].
type
== XPathNodeType.SignificantWhitespace))
2039
if (n == NullIndex || (this.nodes[n].
type
!= XPathNodeType.Text &&
2040
this.nodes[n].
type
!= XPathNodeType.Whitespace &&
2041
this.nodes[n].
type
!= XPathNodeType.SignificantWhitespace))