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