From 5728b471895d57b55760bdaf3939ede92746b25b Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 4 Jul 2015 22:37:23 +0900 Subject: [PATCH] Refactored a few for HttpListenerRequest.cs --- websocket-sharp/Net/HttpListenerRequest.cs | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/websocket-sharp/Net/HttpListenerRequest.cs b/websocket-sharp/Net/HttpListenerRequest.cs index 766501ad..04ccd80d 100644 --- a/websocket-sharp/Net/HttpListenerRequest.cs +++ b/websocket-sharp/Net/HttpListenerRequest.cs @@ -109,8 +109,9 @@ namespace WebSocketSharp.Net /// Gets the media types which are acceptable for the response. /// /// - /// An array of that contains the media type names in the Accept - /// request-header, or if the request didn't include an Accept header. + /// An array of that contains the media type names in + /// the Accept request-header, or if the request didn't include + /// the Accept header. /// public string[] AcceptTypes { get { @@ -135,8 +136,8 @@ namespace WebSocketSharp.Net /// /// /// A that represents the encoding for the entity body data, - /// or if the request didn't include the information - /// about the encoding. + /// or if the request didn't include the information about + /// the encoding. /// public Encoding ContentEncoding { get { @@ -145,11 +146,11 @@ namespace WebSocketSharp.Net } /// - /// Gets the size of the entity body data included in the request. + /// Gets the number of bytes in the entity body data included in the request. /// /// - /// A that represents the value of the Content-Length entity-header. The - /// value is a number of bytes in the entity body data. -1 if the size isn't known. + /// A that represents the value of the Content-Length entity-header, + /// or -1 if the value isn't known. /// public long ContentLength64 { get {