From 8e3c6c5855aae0864b6014b89d770178bb8421c5 Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 21 Jul 2020 19:46:45 +0900 Subject: [PATCH] [Modify] Rename it --- websocket-sharp/Net/HttpHeaderInfo.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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