[Modify] Remove it

This commit is contained in:
sta 2017-07-31 16:36:11 +09:00
parent 2a89c65762
commit aa8f460d81

View File

@ -2074,40 +2074,6 @@ namespace WebSocketSharp
#region Internal Methods
internal static bool CheckParametersForClose (
ushort code, string reason, bool client, out string message
)
{
message = null;
if (!code.IsCloseStatusCode ()) {
message = "'code' is an invalid status code.";
return false;
}
if (code == (ushort) CloseStatusCode.NoStatus && !reason.IsNullOrEmpty ()) {
message = "'code' cannot have a reason.";
return false;
}
if (code == (ushort) CloseStatusCode.MandatoryExtension && !client) {
message = "'code' cannot be used by a server.";
return false;
}
if (code == (ushort) CloseStatusCode.ServerError && client) {
message = "'code' cannot be used by a client.";
return false;
}
if (!reason.IsNullOrEmpty () && reason.UTF8Encode ().Length > 123) {
message = "The size of 'reason' is greater than the allowable max size.";
return false;
}
return true;
}
internal static bool CheckParametersForClose (
CloseStatusCode code, string reason, bool client, out string message
)