xmldocs too

This commit is contained in:
vis2k 2019-09-28 19:29:17 +02:00
parent bc7e116a6e
commit 680d14338b

View File

@ -131,6 +131,11 @@ public virtual bool Available()
/// Calls ServerSend by default. Can be overwritten by transports that can send to multiple
/// clients at once more efficiently if needed.
/// </summary>
/// <param name="connectionIds">The list of client connection ids to send the data to</param>
/// <param name="channelId">The channel to be used. Transports can use channels to implement
/// other features such as unreliable, encryption, compression, etc...</param>
/// <param name="data"></param>
/// <returns>true if the data was sent to all clients</returns>
internal virtual bool ServerSend(List<int> connectionIds, int channelId, byte[] data)
{
// true by default (for empty lists)