2 writes to _payloadSize
System.Net.Security (2)
System\Net\StreamFramer.cs (2)
111
_payloadSize
= value;
129
_payloadSize
= (bytes[start++] << 8) | bytes[start];
3 references to _payloadSize
System.Net.Security (3)
System\Net\StreamFramer.cs (3)
103
get =>
_payloadSize
;
120
dest[start++] = (byte)((
_payloadSize
>> 8) & 0xFF);
121
dest[start] = (byte)(
_payloadSize
& 0xFF);