Prt.GetServiceList (Method)

Syntax

Prt.GetServiceList

Description

Gets a list of the configured PRT services. After calling this method, the total number of services can be obtained from ServiceCount and the individual services may be accessed via the Service function.

Example

Dim prt as new Prt

' Get a list of services from PRT

'    and display them one by one in a message box.

prt.GetServiceList

for j = 0 to prt.ServiceCount - 1

      MsgBox prt.Service(j).Id

next j

More information

PRT Object Model member list.