10 writes to _props
System.Private.Xml (10)
System\Xml\Cache\XPathNode.cs (10)
314
if (value)
_props
|= HasNmspDeclsBit;
315
else 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)
65
get { return (XPathNodeType)(
_props
& NodeTypeMask); }
135
get { return _info.LineNumberBase + (int)((
_props
& LineNumberMask) >> LineNumberShift); }
155
return LinePosition + (int)(
_props
>> CollapsedPositionShift);
255
get { return (
_props
& HasCollapsedTextBit) != 0; }
263
get { return (
_props
& HasAttributeBit) != 0; }
272
get { return (
_props
& HasContentChildBit) != 0; }
280
get { return (
_props
& HasElementChildBit) != 0; }
311
get { return (
_props
& HasNmspDeclsBit) != 0; }
324
get { return (
_props
& AllowShortcutTagBit) != 0; }