From 25bbafcf20503169458066b198e1dac6027db132 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 1 Jul 2020 19:39:18 +0900 Subject: [PATCH] [Modify] Rename it --- websocket-sharp/Net/WebHeaderCollection.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/websocket-sharp/Net/WebHeaderCollection.cs b/websocket-sharp/Net/WebHeaderCollection.cs index 6953e6fd..f1aeb5d1 100644 --- a/websocket-sharp/Net/WebHeaderCollection.cs +++ b/websocket-sharp/Net/WebHeaderCollection.cs @@ -1481,9 +1481,9 @@ namespace WebSocketSharp.Net /// /// A that represents the name of the header to find. /// - public override string[] GetValues (string header) + public override string[] GetValues (string name) { - var vals = base.GetValues (header); + var vals = base.GetValues (name); return vals != null && vals.Length > 0 ? vals : null; }