[Modify] Rename it

This commit is contained in:
sta 2018-01-18 15:21:18 +09:00
parent 64ac8862c9
commit 118be8f472

View File

@ -66,9 +66,9 @@ namespace WebSocketSharp.Net
private HttpListenerContext _context; private HttpListenerContext _context;
private CookieCollection _cookies; private CookieCollection _cookies;
private WebHeaderCollection _headers; private WebHeaderCollection _headers;
private string _httpMethod;
private Guid _identifier; private Guid _identifier;
private Stream _inputStream; private Stream _inputStream;
private string _method;
private NameValueCollection _queryString; private NameValueCollection _queryString;
private Uri _referer; private Uri _referer;
private string _uri; private string _uri;
@ -241,7 +241,7 @@ namespace WebSocketSharp.Net
/// </value> /// </value>
public string HttpMethod { public string HttpMethod {
get { get {
return _method; return _httpMethod;
} }
} }
@ -323,7 +323,7 @@ namespace WebSocketSharp.Net
public bool IsWebSocketRequest { public bool IsWebSocketRequest {
get { get {
if (!_websocketRequestSet) { if (!_websocketRequestSet) {
_websocketRequest = _method == "GET" _websocketRequest = _httpMethod == "GET"
&& _version > HttpVersion.Version10 && _version > HttpVersion.Version10
&& _headers.Upgrades ("websocket"); && _headers.Upgrades ("websocket");
@ -623,7 +623,7 @@ namespace WebSocketSharp.Net
} }
if (_contentLength == -1 && !_chunked) { if (_contentLength == -1 && !_chunked) {
if (_method == "POST" || _method == "PUT") { if (_httpMethod == "POST" || _httpMethod == "PUT") {
_context.ErrorMessage = String.Empty; _context.ErrorMessage = String.Empty;
_context.ErrorStatus = 411; _context.ErrorStatus = 411;
@ -725,7 +725,7 @@ namespace WebSocketSharp.Net
return; return;
} }
_method = method; _httpMethod = method;
_uri = uri; _uri = uri;
_version = ver; _version = ver;
} }
@ -810,7 +810,7 @@ namespace WebSocketSharp.Net
public override string ToString () public override string ToString ()
{ {
var buff = new StringBuilder (64); var buff = new StringBuilder (64);
buff.AppendFormat ("{0} {1} HTTP/{2}\r\n", _method, _uri, _version); buff.AppendFormat ("{0} {1} HTTP/{2}\r\n", _httpMethod, _uri, _version);
buff.Append (_headers.ToString ()); buff.Append (_headers.ToString ());
return buff.ToString (); return buff.ToString ();