2024-11-15 11:37:55 +08:00
|
|
|
|
namespace WcsMain.Utils.Tcp.Entity;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 作为 Tcp客户端发送时的返回信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class TcpClientSendResult
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发送是否成功
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool Success { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发送时的异常
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public Exception? Exception { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|