From 63e63853c1d5ca9f223aa3627ad391ce434a0683 Mon Sep 17 00:00:00 2001 From: TheJoKlLa Date: Fri, 3 Jun 2022 00:51:33 +0200 Subject: [PATCH] Update TcpRpcClient.cs --- Capnp.Net.Runtime/Rpc/TcpRpcClient.cs | 9 +++++++++ 1 file changed, 9 insertions(+) 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; } }