Fix a few for HandshakeRequest.cs

This commit is contained in:
sta 2014-07-09 10:59:32 +09:00
parent f8ffb763c0
commit 9f0f54f4cd

View File

@ -53,9 +53,9 @@ namespace WebSocketSharp
#region Public Constructors #region Public Constructors
public HandshakeRequest (string absPathAndQuery) public HandshakeRequest (string pathAndQuery)
{ {
_uri = absPathAndQuery; _uri = pathAndQuery;
_method = "GET"; _method = "GET";
var headers = Headers; var headers = Headers;