diff --git a/websocket-sharp/Net/HttpHeaderInfo.cs b/websocket-sharp/Net/HttpHeaderInfo.cs index 84274353..eece938b 100644 --- a/websocket-sharp/Net/HttpHeaderInfo.cs +++ b/websocket-sharp/Net/HttpHeaderInfo.cs @@ -75,6 +75,12 @@ namespace WebSocketSharp.Net } } + public HttpHeaderType HeaderType { + get { + return _headerType; + } + } + public bool IsRequest { get { return (_headerType & HttpHeaderType.Request) == HttpHeaderType.Request; @@ -87,12 +93,6 @@ namespace WebSocketSharp.Net } } - public HttpHeaderType Type { - get { - return _headerType; - } - } - #endregion #region Public Methods