通信時のステータスを取得する。
- Type: int
- Access type: read
- Default value: 0
- Range: 0 or other
0: success
other: error for some reason
Examples
C#
1 2 3 |
ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get int result = cltComm.ReceiveStatus; |
Ruby
1 2 3 |
cltComm = ClientTcpCommunication.new #Get result = cltComm.ReceiveStatus |
Python
1 2 3 |
clt_comm = hz_client_tcp_communication.ClientTcpCommunication() #Get result = clt_comm.ReceiveStatus |