| TCPServiceGetPort Full Description |   | 
| Syntax   define external counter function TCPServiceGetPort
        value TCPService this-TCPService
  as TCPServiceGetPort
Purpose This function is used to learn which service port number the TCP service object listens to for incoming connections. This API is particularly useful when you call  Argument: 
 Example
 local TCPService omdemo-service local counter port set omdemo-service to TCPServiceOpen set port to TCPServiceGetPort omdemo-service output "The selected service port for omdemo-service is %d(port)%n" |