@@ -884,7 +884,7 @@ protected void SendToServerTarget<T>(string messageType, string channelName, T i
884
884
}
885
885
886
886
/// <summary>
887
- /// Sends a buffer to the server from client
887
+ /// Sends a buffer to the client that owns this object from the server.
888
888
/// </summary>
889
889
/// <param name="messageType">User defined messageType</param>
890
890
/// <param name="channelName">User defined channelName</param>
@@ -916,7 +916,7 @@ protected void SendToLocalClient(string messageType, string channelName, byte[]
916
916
}
917
917
918
918
/// <summary>
919
- /// Sends a buffer to the server from client
919
+ /// Sends a buffer to the client that owns this object from the server.
920
920
/// </summary>
921
921
/// <param name="messageType">User defined messageType</param>
922
922
/// <param name="channelName">User defined channelName</param>
@@ -944,7 +944,7 @@ protected void SendToLocalClient(string messageType, string channelName, BitWrit
944
944
}
945
945
946
946
/// <summary>
947
- /// Sends a binary serialized class to the server from client
947
+ /// Sends a binary serialized class to the client that owns this object from the server.
948
948
/// </summary>
949
949
/// <typeparam name="T">The class type to send</typeparam>
950
950
/// <param name="messageType">User defined messageType</param>
@@ -1248,7 +1248,7 @@ protected void SendToClient<T>(int clientId, string messageType, string channelN
1248
1248
}
1249
1249
1250
1250
/// <summary>
1251
- /// Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked
1251
+ /// Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour will get invoked
1252
1252
/// </summary>
1253
1253
/// <param name="clientId">The clientId to send the message to</param>
1254
1254
/// <param name="messageType">User defined messageType</param>
@@ -1281,7 +1281,7 @@ protected void SendToClientTarget(uint clientId, string messageType, string chan
1281
1281
}
1282
1282
1283
1283
/// <summary>
1284
- /// Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked
1284
+ /// Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour will get invoked
1285
1285
/// </summary>
1286
1286
/// <param name="clientId">The clientId to send the message to</param>
1287
1287
/// <param name="messageType">User defined messageType</param>
@@ -1310,7 +1310,7 @@ protected void SendToClientTarget(uint clientId, string messageType, string chan
1310
1310
}
1311
1311
1312
1312
/// <summary>
1313
- /// Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked
1313
+ /// Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour will get invoked
1314
1314
/// </summary>
1315
1315
/// <typeparam name="T">The class type to send</typeparam>
1316
1316
/// <param name="clientId">The clientId to send the message to</param>
@@ -1400,7 +1400,7 @@ protected void SendToClients<T>(int[] clientIds, string messageType, string chan
1400
1400
}
1401
1401
1402
1402
/// <summary>
1403
- /// Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
1403
+ /// Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour will get invoked
1404
1404
/// </summary>
1405
1405
/// <param name="clientIds">The clientId's to send to</param>
1406
1406
/// <param name="messageType">User defined messageType</param>
@@ -1433,7 +1433,7 @@ protected void SendToClientsTarget(uint[] clientIds, string messageType, string
1433
1433
}
1434
1434
1435
1435
/// <summary>
1436
- /// Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
1436
+ /// Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour will get invoked
1437
1437
/// </summary>
1438
1438
/// <param name="clientIds">The clientId's to send to</param>
1439
1439
/// <param name="messageType">User defined messageType</param>
@@ -1462,7 +1462,7 @@ protected void SendToClientsTarget(uint[] clientIds, string messageType, string
1462
1462
}
1463
1463
1464
1464
/// <summary>
1465
- /// Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
1465
+ /// Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour will get invoked
1466
1466
/// </summary>
1467
1467
/// <typeparam name="T">The class type to send</typeparam>
1468
1468
/// <param name="clientIds">The clientId's to send to</param>
@@ -1552,7 +1552,7 @@ protected void SendToClients<T>(List<int> clientIds, string messageType, string
1552
1552
}
1553
1553
1554
1554
/// <summary>
1555
- /// Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
1555
+ /// Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour will get invoked
1556
1556
/// </summary>
1557
1557
/// <param name="clientIds">The clientId's to send to</param>
1558
1558
/// <param name="messageType">User defined messageType</param>
@@ -1585,7 +1585,7 @@ protected void SendToClientsTarget(List<uint> clientIds, string messageType, str
1585
1585
}
1586
1586
1587
1587
/// <summary>
1588
- /// Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
1588
+ /// Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour will get invoked
1589
1589
/// </summary>
1590
1590
/// <param name="clientIds">The clientId's to send to</param>
1591
1591
/// <param name="messageType">User defined messageType</param>
@@ -1614,7 +1614,7 @@ protected void SendToClientsTarget(List<uint> clientIds, string messageType, str
1614
1614
}
1615
1615
1616
1616
/// <summary>
1617
- /// Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
1617
+ /// Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour will get invoked
1618
1618
/// </summary>
1619
1619
/// <typeparam name="T">The class type to send</typeparam>
1620
1620
/// <param name="clientIds">The clientId's to send to</param>
0 commit comments