Refactored HttpHeaderInfo.cs

This commit is contained in:
sta 2014-04-17 15:21:02 +09:00
parent aa1b048d28
commit 34c1bcc767

View File

@ -1,38 +1,44 @@
//
// HttpHeaderInfo.cs
//
// Authors:
// sta (sta.blockhead@gmail.com)
//
// Copyright (c) 2013 sta.blockhead
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
#region License
/*
* HttpHeaderInfo.cs
*
* The MIT License
*
* Copyright (c) 2013-2014 sta.blockhead
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#endregion
using System;
namespace WebSocketSharp.Net {
namespace WebSocketSharp.Net
{
internal class HttpHeaderInfo
{
#region Private Fields
class HttpHeaderInfo {
private HttpHeaderType _type;
#region Constructor
#endregion
#region Public Constructors
public HttpHeaderInfo ()
{
@ -40,43 +46,57 @@ namespace WebSocketSharp.Net {
#endregion
#region Properties
#region Internal Properties
public bool IsMultiValueInRequest {
internal bool IsMultiValueInRequest {
get {
return (Type & HttpHeaderType.MultiValueInRequest) == HttpHeaderType.MultiValueInRequest;
return (_type & HttpHeaderType.MultiValueInRequest) == HttpHeaderType.MultiValueInRequest;
}
}
public bool IsMultiValueInResponse {
internal bool IsMultiValueInResponse {
get {
return (Type & HttpHeaderType.MultiValueInResponse) == HttpHeaderType.MultiValueInResponse;
return (_type & HttpHeaderType.MultiValueInResponse) == HttpHeaderType.MultiValueInResponse;
}
}
#endregion
#region Public Properties
public bool IsRequest {
get {
return (Type & HttpHeaderType.Request) == HttpHeaderType.Request;
return (_type & HttpHeaderType.Request) == HttpHeaderType.Request;
}
}
public bool IsResponse {
get {
return (Type & HttpHeaderType.Response) == HttpHeaderType.Response;
return (_type & HttpHeaderType.Response) == HttpHeaderType.Response;
}
}
public string Name { get; set; }
public string Name {
get; set;
}
public HttpHeaderType Type { get; set; }
public HttpHeaderType Type {
get {
return _type;
}
set {
_type = value;
}
}
#endregion
#region Methods
#region Public Methods
public bool IsMultiValue (bool response)
{
return (Type & HttpHeaderType.MultiValue) != HttpHeaderType.MultiValue
return (_type & HttpHeaderType.MultiValue) != HttpHeaderType.MultiValue
? response
? IsMultiValueInResponse
: IsMultiValueInRequest
@ -87,7 +107,7 @@ namespace WebSocketSharp.Net {
public bool IsRestricted (bool response)
{
return (Type & HttpHeaderType.Restricted) != HttpHeaderType.Restricted
return (_type & HttpHeaderType.Restricted) != HttpHeaderType.Restricted
? false
: response
? IsResponse