[Modify] Rename it

This commit is contained in:
sta 2020-07-20 21:18:36 +09:00
parent b97bd787c3
commit e950b9ca06

View File

@ -35,7 +35,7 @@ namespace WebSocketSharp.Net
#region Private Fields #region Private Fields
private string _headerName; private string _headerName;
private HttpHeaderType _type; private HttpHeaderType _headerType;
#endregion #endregion
@ -44,7 +44,7 @@ namespace WebSocketSharp.Net
internal HttpHeaderInfo (string headerName, HttpHeaderType headerType) internal HttpHeaderInfo (string headerName, HttpHeaderType headerType)
{ {
_headerName = headerName; _headerName = headerName;
_type = headerType; _headerType = headerType;
} }
#endregion #endregion
@ -53,14 +53,14 @@ namespace WebSocketSharp.Net
internal bool IsMultiValueInRequest { internal bool IsMultiValueInRequest {
get { get {
return (_type & HttpHeaderType.MultiValueInRequest) return (_headerType & HttpHeaderType.MultiValueInRequest)
== HttpHeaderType.MultiValueInRequest; == HttpHeaderType.MultiValueInRequest;
} }
} }
internal bool IsMultiValueInResponse { internal bool IsMultiValueInResponse {
get { get {
return (_type & HttpHeaderType.MultiValueInResponse) return (_headerType & HttpHeaderType.MultiValueInResponse)
== HttpHeaderType.MultiValueInResponse; == HttpHeaderType.MultiValueInResponse;
} }
} }
@ -71,13 +71,13 @@ namespace WebSocketSharp.Net
public bool IsRequest { public bool IsRequest {
get { get {
return (_type & HttpHeaderType.Request) == HttpHeaderType.Request; return (_headerType & HttpHeaderType.Request) == HttpHeaderType.Request;
} }
} }
public bool IsResponse { public bool IsResponse {
get { get {
return (_type & HttpHeaderType.Response) == HttpHeaderType.Response; return (_headerType & HttpHeaderType.Response) == HttpHeaderType.Response;
} }
} }
@ -89,7 +89,7 @@ namespace WebSocketSharp.Net
public HttpHeaderType Type { public HttpHeaderType Type {
get { get {
return _type; return _headerType;
} }
} }
@ -99,14 +99,14 @@ namespace WebSocketSharp.Net
public bool IsMultiValue (bool response) public bool IsMultiValue (bool response)
{ {
return (_type & HttpHeaderType.MultiValue) == HttpHeaderType.MultiValue return (_headerType & HttpHeaderType.MultiValue) == HttpHeaderType.MultiValue
? (response ? IsResponse : IsRequest) ? (response ? IsResponse : IsRequest)
: (response ? IsMultiValueInResponse : IsMultiValueInRequest); : (response ? IsMultiValueInResponse : IsMultiValueInRequest);
} }
public bool IsRestricted (bool response) public bool IsRestricted (bool response)
{ {
return (_type & HttpHeaderType.Restricted) == HttpHeaderType.Restricted return (_headerType & HttpHeaderType.Restricted) == HttpHeaderType.Restricted
? (response ? IsResponse : IsRequest) ? (response ? IsResponse : IsRequest)
: false; : false;
} }