NetworkBaseSendStringAndCheckReceive 方法 (Socket, Int32, String) | 
 
            [自校验] 直接发送字符串数据并确认对方接收完成数据,如果结果异常,则结束通讯
            [Self-checking] Send string data 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.5.1.0 (12.5.1.0)
语法protected OperateResult SendStringAndCheckReceive(
	Socket socket,
	int customer,
	string send
)
Protected Function SendStringAndCheckReceive ( 
	socket As Socket,
	customer As Integer,
	send As String
) As OperateResult
protected:
OperateResult^ SendStringAndCheckReceive(
	Socket^ socket, 
	int customer, 
	String^ send
)
member SendStringAndCheckReceive : 
        socket : Socket * 
        customer : int * 
        send : string -> OperateResult 
参数
- socket
 - 类型:System.Net.SocketsSocket
网络套接字 - customer
 - 类型:SystemInt32
用户指令 - send
 - 类型:SystemString
发送的数据 
返回值
类型:
OperateResult是否发送成功
参见