Microsoft Internet Security and Acceleration Server 2000 |
Gets a collection of all ISA servers in this array. This property can be used in turn to access all the properties of each individual server.
[ collFPCServers = ] FPCArray.Servers
HRESULT get_Servers( IFPCServers **pcollFPCServers );
The property is read-only.
The following code uses the Servers property to return the name of an individual server.
Dim objFPC As New FPCLib.FPC Dim serverName As String Dim objFPCArray As FPCArray Set objFPCArray = objFPC.Arrays(1) serverName = objFPCArray.Servers(1).Name