3 writes to _bits
System.Web (3)
Cache\CacheEntry.cs (3)
39
_bits
= BitPublic;
42
_bits
|= BitOutputCache;
193
set {
_bits
= (byte) (((uint) _bits & ~(uint)EntryStateMask) | (uint) value); }
4 references to _bits
System.Web (4)
Cache\CacheEntry.cs (4)
58
get { return (
_bits
& BitOutputCache) != 0; }
62
get { return (
_bits
& BitPublic) != 0; }
192
get { return (EntryState) (
_bits
& EntryStateMask); }
193
set { _bits = (byte) (((uint)
_bits
& ~(uint)EntryStateMask) | (uint) value); }