[Modify] Move it
This commit is contained in:
parent
c8c4f12232
commit
41619ca1b1
@ -131,6 +131,16 @@ namespace WebSocketSharp
|
|||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region Internal Properties
|
||||||
|
|
||||||
|
internal int ExtendedPayloadLengthCount {
|
||||||
|
get {
|
||||||
|
return _payloadLength < 126 ? 0 : (_payloadLength == 126 ? 2 : 8);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
#region Public Properties
|
#region Public Properties
|
||||||
|
|
||||||
public byte[] ExtendedPayloadLength {
|
public byte[] ExtendedPayloadLength {
|
||||||
@ -139,12 +149,6 @@ namespace WebSocketSharp
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public int ExtendedPayloadLengthCount {
|
|
||||||
get {
|
|
||||||
return _payloadLength < 126 ? 0 : (_payloadLength == 126 ? 2 : 8);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public Fin Fin {
|
public Fin Fin {
|
||||||
get {
|
get {
|
||||||
return _fin;
|
return _fin;
|
||||||
|
Loading…
Reference in New Issue
Block a user