非同期メッセージの受信を行うポート番号を設定・取得する。
- Type: ushort
- Access type: read / write
- Default value: 46100
- Range: 0 – 65,535
Examples
C#
1 2 3 4 5 6 |
ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get ushort port = cltComm.ReceivePort; //Set cltComm.ReceivePort = 46100; |
Ruby
1 2 3 4 5 6 |
cltComm = ClientTcpCommunication.new #Get port = cltComm.ReceivePort #Set cltComm.ReceivePort = 46100 |
Python
1 2 3 4 5 6 |
clt_comm = hz_client_tcp_communication.ClientTcpCommunication() #Get port = clt_comm.ReceivePort #Set clt_comm.ReceivePort = 46100 |