kerryjiang / SuperSocket

SuperSocket is a light weight, cross platform and extensible socket server application framework.
Apache License 2.0
3.95k stars 1.15k forks source link

EasyClient 2.0.x 版本中的 AsUdp() 方法使用讨论 #577

Open yanght1001 opened 2 years ago

yanght1001 commented 2 years ago

new EasyClient(new DataPipelineFilter()).AsUdp(new IPEndPoint(IPAddress.Parse("192.168.1.59"), 4040)); 实例化客户端的时候.AsUdp() 无返回值,那么就无法发送数据和监听接受数据,是不是给这个方法应该增加一个 return this;然后就可以类似TCP客户端一样收发数据了。

public virtual IEasyClient<TReceivePackage> AsUdp(IPEndPoint remoteEndPoint, ArrayPool<byte> bufferPool = null, int bufferSize = 4096) { //省略代码一些行 return this;// 这里是否要增加这个。 }