[Modify] Polish it
This commit is contained in:
parent
909cb12717
commit
f9ca46e840
@ -150,7 +150,11 @@ namespace WebSocketSharp
|
|||||||
|
|
||||||
internal int ExtendedPayloadLengthCount {
|
internal int ExtendedPayloadLengthCount {
|
||||||
get {
|
get {
|
||||||
return _payloadLength < 126 ? 0 : (_payloadLength == 126 ? 2 : 8);
|
return _payloadLength < 126
|
||||||
|
? 0
|
||||||
|
: _payloadLength == 126
|
||||||
|
? 2
|
||||||
|
: 8;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user