Microsoft Internet Security and Acceleration Server 2000 |
Gets a collection of all FPC arrays within the FPC root node. Using this arrays property, you can access individual servers within each array.
[ collFPCArrays = ] FPC.Arrays
HRESULT get_Arrays( IFPCArrays **pcollFPCArrays );
The property is read-only.
The following code uses the Arrays property to access the FPCArray.Name property of the first array in the FPC root object:
Dim objFPC As New fpcLib.FPC Dim arrayName As String arrayName = objFPC.Arrays(1).Name