Wenchel

Results 2 issues of Wenchel

G2引用1.1.28正常显示Title和Description,引用最新的2.3.40不显示Title和Description。 ![image](https://user-images.githubusercontent.com/27775368/143997812-5a85e0ca-a0a6-4e18-a8a0-0c686dea232c.png) ![image](https://user-images.githubusercontent.com/27775368/143997857-d1a0ba03-a7f0-44e3-b77d-ff97859bbf14.png)

感谢大佬的封装,有一个疑问: ``` foreach (var item in tcpServer.GetAllConnections()) { item.Close(); tcpServer.RemoveConnection(item); } tcpServer.Close(); ``` item在Close()时不执行ConnectionClose 但是,当有新客户端建立连接时,通过connection.Close()是可以触发ConnectionClose事件的: ``` .OnNewConnection((server, connection) => { var clientAddress = connection.ClientAddress.Address.MapToIPv4().ToString(); var clientPort = connection.ClientAddress.Port; connection.ConnectionName =...