Microsoft Internet Security and Acceleration Server 2004 SDK

Arrays Property of IFPC[C++]

FPC.Arrays [Visual Basic]

[C++]

The Arrays property gets an FPCArrays collection that contains all the arrays for the root object. This property can be used to access an individual server within each array.

HRESULT get_Arrays(
  IFPCArrays** ppArrays
);

Parameters

ppArrays
Address of an interface pointer that on return points to an IFPCArrays collection that represents a collection of arrays.

Return Values

This property method returns S_OK if the call is successful; otherwise, it returns an error code.

Remarks

This property is read-only.

[Visual Basic]

The Arrays property gets an FPCArrays collection that contains all the arrays for the root object. This property can be used to access an individual server within each array.

Property Arrays As FPCArrays

Property Value

Reference to an FPCArrays collection.

Remarks

This property is read-only.

Example Code

This VBScript script retrieves the arrays collection. It does not include error handling.

Option Explicit
Dim root
Dim arrays
'Create the root ISA Server object
Set root = CreateObject("FPC.Root")
'Get the arrays collection
Set arrays = root.Arrays

Requirements

Server: Requires Windows Server 2003 or Windows 2000.
Version: Requires Internet Security and Acceleration Server 2004.
Header: Declared in Msfpccom.idl.
Library: Use Microsoft Internet Security and Acceleration Server 2004 Administration Library.

See Also

FPC