diff options
Diffstat (limited to 'MediaBrowser.Common/Net/IWebSocketConnection.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/IWebSocketConnection.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/MediaBrowser.Common/Net/IWebSocketConnection.cs b/MediaBrowser.Common/Net/IWebSocketConnection.cs index 9f9dfaeca..b7715e20b 100644 --- a/MediaBrowser.Common/Net/IWebSocketConnection.cs +++ b/MediaBrowser.Common/Net/IWebSocketConnection.cs @@ -63,11 +63,10 @@ namespace MediaBrowser.Common.Net /// <summary> /// Sends a message asynchronously. /// </summary> - /// <param name="buffer">The buffer.</param> - /// <param name="type">The type.</param> + /// <param name="text">The text.</param> /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task.</returns> /// <exception cref="System.ArgumentNullException">buffer</exception> - Task SendAsync(byte[] buffer, WebSocketMessageType type, CancellationToken cancellationToken); + Task SendAsync(string text, CancellationToken cancellationToken); } }
\ No newline at end of file |
