Microsoft Internet Security and Acceleration Server 2000

FPCArray.Alerts Property

Gets a collection of all alerts in the array. Use this property to read, write, add, delete, or modify the Alerts property for a particular array.

VBScript Syntax[VBScript]

[ collFPCAlerts = ] FPCArray.Alerts

C++ Syntax[C++]

HRESULT get_Alerts(
  IFPCAlerts **pcollFPCAlerts
);

Parameters

collFPCAlerts
Reference to an FPCAlerts collection.

The property is read-only.

Example

The following code uses the Alerts property to return the name of an individual alert:

Dim objFPC As New FPCLib.FPC
Dim alertName As String
Dim objFPCArray As FPCArray
Set objFPCArray = objFPC.Arrays(1)
alertName = objFPCArray.Alerts(1).Name

Applies To

FPCArray

See Also

FPCAlert