diff --git a/websocket-sharp/Server/WebSocketBehavior.cs b/websocket-sharp/Server/WebSocketBehavior.cs index 98b92cfe..74b5d3fa 100644 --- a/websocket-sharp/Server/WebSocketBehavior.cs +++ b/websocket-sharp/Server/WebSocketBehavior.cs @@ -481,14 +481,14 @@ namespace WebSocketSharp.Server /// /// A that represents the file to send. /// - protected void Send (FileInfo file) + protected void Send (FileInfo fileInfo) { if (_websocket == null) { var msg = "The current state of the connection is not Open."; throw new InvalidOperationException (msg); } - _websocket.Send (file); + _websocket.Send (fileInfo); } ///