2025-05-22 13:06:49 +08:00
|
|
|
|
namespace WcsMain.Tcp.Entity;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 作为 Tcp客户端发送时的返回信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class TcpClientSendResult
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发送是否成功
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool Success { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发送时的异常
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public Exception? Exception { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|