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;
}