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);
| }
| }
| }
|
|