Replaced the SendToAsync (string id, byte[] data, Action<bool> completed) method with the SendToAsync (byte[] data, string id, Action<bool> completed) method

This commit is contained in:
sta 2015-04-21 15:25:27 +09:00
parent 8e1005b90f
commit 4d837ce8f7

View File

@ -714,18 +714,18 @@ namespace WebSocketSharp.Server
/// <remarks> /// <remarks>
/// This method doesn't wait for the send to be complete. /// This method doesn't wait for the send to be complete.
/// </remarks> /// </remarks>
/// <param name="id">
/// A <see cref="string"/> that represents the ID of the session to find.
/// </param>
/// <param name="data"> /// <param name="data">
/// An array of <see cref="byte"/> that represents the binary data to send. /// An array of <see cref="byte"/> that represents the binary data to send.
/// </param> /// </param>
/// <param name="id">
/// A <see cref="string"/> that represents the ID of the session to find.
/// </param>
/// <param name="completed"> /// <param name="completed">
/// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when /// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when
/// the send is complete. A <see cref="bool"/> passed to this delegate is <c>true</c> /// the send is complete. A <see cref="bool"/> passed to this delegate is <c>true</c>
/// if the send is complete successfully. /// if the send is complete successfully.
/// </param> /// </param>
public void SendToAsync (string id, byte[] data, Action<bool> completed) public void SendToAsync (byte[] data, string id, Action<bool> completed)
{ {
IWebSocketSession session; IWebSocketSession session;
if (TryGetSession (id, out session)) if (TryGetSession (id, out session))