diff --git a/Capnp.Net.Runtime/Rpc/TcpRpcClient.cs b/Capnp.Net.Runtime/Rpc/TcpRpcClient.cs index c6a6092..2e735d5 100644 --- a/Capnp.Net.Runtime/Rpc/TcpRpcClient.cs +++ b/Capnp.Net.Runtime/Rpc/TcpRpcClient.cs @@ -10,9 +10,18 @@ using System.Threading.Tasks; namespace Capnp.Rpc { + /// + /// ConnectionStateChange of TcpClient + /// public class ConnectionStateChange { + /// + /// New State of TcpClient + /// public ConnectionState NewState { get; set; } + /// + /// Last State of TcpClient + /// public ConnectionState LastState { get; set; } }