16 writes to nodetype
System.Xml (16)
System\Xml\BinaryXml\XmlBinaryReader.cs (16)
330
this.
nodetype
= XmlNodeType.None;
723
this.
nodetype
= this.parentNodeType;
764
this.
nodetype
= XmlNodeType.Text;
780
this.
nodetype
= XmlNodeType.None;
834
this.
nodetype
= XmlNodeType.None;
2117
this.
nodetype
= XmlNodeType.Attribute;
2261
this.
nodetype
= XmlNodeType.XmlDeclaration;
2479
this.
nodetype
= XmlNodeType.None;
2624
this.
nodetype
= ScanOverValue(this.token, false, true);
2733
this.
nodetype
= XmlNodeType.Element;
2746
this.
nodetype
= XmlNodeType.EndElement;
2780
this.
nodetype
= XmlNodeType.DocumentType;
2788
this.
nodetype
= XmlNodeType.ProcessingInstruction;
2792
this.
nodetype
= XmlNodeType.Comment;
2799
this.
nodetype
= XmlNodeType.CDATA;
2858
this.
nodetype
= r.NodeType;
8 references to nodetype
System.Xml (8)
System\Xml\BinaryXml\XmlBinaryReader.cs (8)
415
return this.
nodetype
;
442
return XmlReader.HasValueInternal(this.
nodetype
);
452
switch (this.
nodetype
) {
490
if (this.
nodetype
== XmlNodeType.Element
491
|| this.
nodetype
== XmlNodeType.EndElement)
2114
this.parentNodeType = this.
nodetype
;
2462
switch (this.
nodetype
) {
2591
if (XmlNodeType.Text == this.
nodetype
)