10 writes to _props
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathNode.cs (10)
316
if (value)
_props
|= HasNmspDeclsBit;
317
else unchecked {
_props
&= (byte)~((uint)HasNmspDeclsBit); }
365
_props
= (uint)xptyp;
376
_props
|= ((uint)lineNumOffset << LineNumberShift);
386
_props
|= ((uint)posOffset << CollapsedPositionShift);
405
_props
|= AllowShortcutTagBit;
415
_props
|= HasContentChildBit | HasCollapsedTextBit;
426
_props
|= HasAttributeBit;
430
_props
|= HasContentChildBit;
432
_props
|= HasElementChildBit;
9 references to _props
dotnet-svcutil-lib (9)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathNode.cs (9)
69
get { return (XPathNodeType)(
_props
& NodeTypeMask); }
139
get { return _info.LineNumberBase + (int)((
_props
& LineNumberMask) >> LineNumberShift); }
159
return LinePosition + (int)(
_props
>> CollapsedPositionShift);
257
get { return (
_props
& HasCollapsedTextBit) != 0; }
265
get { return (
_props
& HasAttributeBit) != 0; }
274
get { return (
_props
& HasContentChildBit) != 0; }
282
get { return (
_props
& HasElementChildBit) != 0; }
313
get { return (
_props
& HasNmspDeclsBit) != 0; }
326
get { return (
_props
& AllowShortcutTagBit) != 0; }