[Modify] Move it

This commit is contained in:
sta 2015-10-05 14:31:00 +09:00
parent c8c4f12232
commit 41619ca1b1

View File

@ -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;