[Modify] Add it

This commit is contained in:
sta 2018-02-21 17:43:48 +09:00
parent 9f7ee08295
commit f34eb021b3

View File

@ -628,6 +628,13 @@ namespace WebSocketSharp.Net
return ret;
}
private RequestStream getInputStream ()
{
return _contentLength > 0 || _chunked
? _connection.GetRequestStream (_contentLength, _chunked)
: null;
}
#endregion
#region Internal Methods