10 writes to _props
System.Private.Xml (10)
System\Xml\Cache\XPathNode.cs (10)
314if (value) _props |= HasNmspDeclsBit; 315else unchecked { _props &= (byte)~((uint)HasNmspDeclsBit); } 363_props = (uint)xptyp; 374_props |= ((uint)lineNumOffset << LineNumberShift); 384_props |= ((uint)posOffset << CollapsedPositionShift); 403_props |= AllowShortcutTagBit; 413_props |= HasContentChildBit | HasCollapsedTextBit; 424_props |= HasAttributeBit; 428_props |= HasContentChildBit; 430_props |= HasElementChildBit;
9 references to _props
System.Private.Xml (9)
System\Xml\Cache\XPathNode.cs (9)
65get { return (XPathNodeType)(_props & NodeTypeMask); } 135get { return _info.LineNumberBase + (int)((_props & LineNumberMask) >> LineNumberShift); } 155return LinePosition + (int)(_props >> CollapsedPositionShift); 255get { return (_props & HasCollapsedTextBit) != 0; } 263get { return (_props & HasAttributeBit) != 0; } 272get { return (_props & HasContentChildBit) != 0; } 280get { return (_props & HasElementChildBit) != 0; } 311get { return (_props & HasNmspDeclsBit) != 0; } 324get { return (_props & AllowShortcutTagBit) != 0; }