Microsoft Internet Security and Acceleration Server 2000 |
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.
[ collFPCAlerts = ] FPCArray.Alerts
HRESULT get_Alerts( IFPCAlerts **pcollFPCAlerts );
The property is read-only.
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