Gets or sets the port number of the access point.
- Type: ushort
- Access type: read / write
- Default value: 46000
- Range: 0 – 65,535
Examples
C#
| 1 2 3 4 5 6 | ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get ushort port = cltComm.ServerPortNo; //Set cltComm.ServerPortNo = 46000; | 
Ruby
| 1 2 3 4 5 6 | cltComm = ClientTcpCommunication.new #Get port = cltComm.ServerPortNo #Set cltComm.ServerPortNo = 46000 | 
Python
| 1 2 3 4 5 6 | clt_comm = hz_client_tcp_communication.ClientTcpCommunication() #Get port = clt_comm.ServerPortNo #Set clt_comm.ServerPortNo = 46000 | 
