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