Fix a few for HandshakeRequest.cs
This commit is contained in:
parent
18217fde59
commit
51a933272e
@ -27,7 +27,6 @@
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Specialized;
|
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using WebSocketSharp.Net;
|
using WebSocketSharp.Net;
|
||||||
|
|
||||||
@ -161,20 +160,20 @@ namespace WebSocketSharp
|
|||||||
|
|
||||||
public override string ToString ()
|
public override string ToString ()
|
||||||
{
|
{
|
||||||
var buff = new StringBuilder (64);
|
var output = new StringBuilder (64);
|
||||||
buff.AppendFormat ("{0} {1} HTTP/{2}{3}", _method, _uri, ProtocolVersion, CrLf);
|
output.AppendFormat ("{0} {1} HTTP/{2}{3}", _method, _uri, ProtocolVersion, CrLf);
|
||||||
|
|
||||||
var headers = Headers;
|
var headers = Headers;
|
||||||
foreach (var key in headers.AllKeys)
|
foreach (var key in headers.AllKeys)
|
||||||
buff.AppendFormat ("{0}: {1}{2}", key, headers [key], CrLf);
|
output.AppendFormat ("{0}: {1}{2}", key, headers [key], CrLf);
|
||||||
|
|
||||||
buff.Append (CrLf);
|
output.Append (CrLf);
|
||||||
|
|
||||||
var entity = EntityBody;
|
var entity = EntityBody;
|
||||||
if (entity.Length > 0)
|
if (entity.Length > 0)
|
||||||
buff.Append (entity);
|
output.Append (entity);
|
||||||
|
|
||||||
return buff.ToString ();
|
return output.ToString ();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
Loading…
Reference in New Issue
Block a user