10 writes to props
System.Xml (10)
System\Xml\Cache\XPathNode.cs (10)
284if (value) this.props |= HasNmspDeclsBit; 285else unchecked { this.props &= (byte) ~((uint) HasNmspDeclsBit); } 328this.props = (uint) xptyp; 338this.props |= ((uint) lineNumOffset << LineNumberShift); 347this.props |= ((uint) posOffset << CollapsedPositionShift); 364this.props |= AllowShortcutTagBit; 373this.props |= HasContentChildBit | HasCollapsedTextBit; 382this.props |= HasAttributeBit; 385this.props |= HasContentChildBit; 387this.props |= HasElementChildBit;
9 references to props
System.Xml (9)
System\Xml\Cache\XPathNode.cs (9)
69get { return (XPathNodeType) (this.props & NodeTypeMask); } 129get { return this.info.LineNumberBase + (int) ((this.props & LineNumberMask) >> LineNumberShift); } 146return LinePosition + (int) (this.props >> CollapsedPositionShift); 233get { return (this.props & HasCollapsedTextBit) != 0; } 240get { return (this.props & HasAttributeBit) != 0; } 248get { return (this.props & HasContentChildBit) != 0; } 255get { return (this.props & HasElementChildBit) != 0; } 282get { return (this.props & HasNmspDeclsBit) != 0; } 293get { return (this.props & AllowShortcutTagBit) != 0; }