Microsoft Internet Security and Acceleration Server 2000

FPCVendorParametersSet.AllNames Property

Gets all the names of the parameters set.

VBScript Syntax[VBScript]

[ vItem = ]FPCVendorParametersSet.AllNames 

C++ Syntax[C++]

HRESULT get_AllNames(
  VARIANT *pvItem
);

Parameters

vItem
Pointer to an array of strings.

The property is read-only.

Remarks

The AllNames property returns a list of all the names of user-defined properties stored through the Value property.

For example, the following uses the Value property to store two user-defined values, "1" and "2":

obj.Value("x") = 1
obj.Value("y") = 2

If the AllNames property is used now, it returns an array of strings containing the strings "x" and "y".

Applies To

FPCVendorParametersSet