Update TcpRpcClient.cs

This commit is contained in:
TheJoKlLa 2022-06-03 00:51:33 +02:00 committed by GitHub
parent 0176a503c8
commit 63e63853c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,9 +10,18 @@ using System.Threading.Tasks;
namespace Capnp.Rpc namespace Capnp.Rpc
{ {
/// <summary>
/// ConnectionStateChange of TcpClient
/// </summary>
public class ConnectionStateChange public class ConnectionStateChange
{ {
/// <summary>
/// New State of TcpClient
/// </summary>
public ConnectionState NewState { get; set; } public ConnectionState NewState { get; set; }
/// <summary>
/// Last State of TcpClient
/// </summary>
public ConnectionState LastState { get; set; } public ConnectionState LastState { get; set; }
} }