Microsoft Internet Security and Acceleration Server 2000

FPCArray.Servers Property

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.

VBScript Syntax[VBScript]

[ collFPCServers = ] FPCArray.Servers

C++ Syntax[C++]

HRESULT get_Servers(
  IFPCServers **pcollFPCServers
);

Parameters

collFPCServers
Reference to an FPCServers collection.

The property is read-only.

Example

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

Applies To

FPCArray

See Also

FPCServer