[Modify] Add it

This commit is contained in:
sta 2018-03-13 15:24:02 +09:00
parent 011366f8b6
commit 1c401b13d2

View File

@ -153,6 +153,13 @@ namespace WebSocketSharp
|| value == "TRACE"; || value == "TRACE";
} }
private static bool isHttpMethod10 (this string value)
{
return value == "GET"
|| value == "HEAD"
|| value == "POST";
}
private static void times (this ulong n, Action action) private static void times (this ulong n, Action action)
{ {
for (ulong i = 0; i < n; i++) for (ulong i = 0; i < n; i++)