NetworkBase.SendStringAndCheckReceiveAsync 方法 (Socket, Int32,String[]) |
[自校验] 直接发送字符串数组并确认对方接收完成数据,如果结果异常,则结束通讯
[Self-check] Send string array directly 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.3.1.0 (12.3.1.0)
语法protected Task<OperateResult> SendStringAndCheckReceiveAsync(
Socket socket,
int customer,
string[] sends
)
Protected Function SendStringAndCheckReceiveAsync (
socket As Socket,
customer As Integer,
sends As String()
) As Task(Of OperateResult)
protected:
Task<OperateResult^>^ SendStringAndCheckReceiveAsync(
Socket^ socket,
int customer,
array<String^>^ sends
)
member SendStringAndCheckReceiveAsync :
socket : Socket *
customer : int *
sends : string[] -> Task<OperateResult>
参数
- socket
- 类型:System.Net.Sockets.Socket
网络套接字 - customer
- 类型:System.Int32
用户指令 - sends
- 类型:System.String[]
发送的字符串数组
返回值
类型:
Task<OperateResult>是否发送成功
参见