NetworkBaseSendBaseAndCheckReceive 方法 |
[自校验] 发送字节数据并确认对方接收完成数据,如果结果异常,则结束通讯
[Self-check] Send the byte data and confirm that the other party has received the completed data. If the result is abnormal, the communication ends.
命名空间:
HslCommunication.Core.Net
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 protected OperateResult SendBaseAndCheckReceive(
Socket socket,
int headCode,
int customer,
byte[] send
)
Protected Function SendBaseAndCheckReceive (
socket As Socket,
headCode As Integer,
customer As Integer,
send As Byte()
) As OperateResult
protected:
OperateResult^ SendBaseAndCheckReceive(
Socket^ socket,
int headCode,
int customer,
array<unsigned char>^ send
)
member SendBaseAndCheckReceive :
socket : Socket *
headCode : int *
customer : int *
send : byte[] -> OperateResult
参数
- socket
- 类型:System.Net.SocketsSocket
网络套接字 - headCode
- 类型:SystemInt32
头指令 - customer
- 类型:SystemInt32
用户指令 - send
- 类型:SystemByte
发送的数据
返回值
类型:
OperateResult是否发送成功
参见