1
huangxiaoqiang
2025-06-26 f4c8d54b4313132863df8fb9f2c5087ea6ba44a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using LogLibrary.Log;
using System.Net.Sockets;
using System.Text;
using WIDESEA_IStorageSocketRepository;
 
namespace WIDESEA_StorageSocketRepository
{
    public class SocketClientRepository: ISocketClientRepository
    {
        public void clientSend(byte[] buffer)
        {
            var Y = Encoding.UTF8.GetString(buffer);
            //LogFactory.GetLog("Socket发送数据").Error(true, Y);
            //socket.Send(buffer);
        }
    }
}