1 write to _countAndEndOfMessage
System.Net.WebSockets (1)
System\Net\WebSockets\ValueWebSocketReceiveResult.cs (1)
23
_countAndEndOfMessage
= (uint)count | (uint)(endOfMessage ? 1 << 31 : 0);
2 references to _countAndEndOfMessage
System.Net.WebSockets (2)
System\Net\WebSockets\ValueWebSocketReceiveResult.cs (2)
31
public int Count => (int)(
_countAndEndOfMessage
& 0x7FFFFFFF);
32
public bool EndOfMessage => (
_countAndEndOfMessage
& 0x80000000) == 0x80000000;