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