Microsoft Internet Security and Acceleration Server 2000 |
Gets all the names of the parameters set.
[ vItem = ]FPCVendorParametersSet.AllNames
HRESULT get_AllNames( VARIANT *pvItem );
The property is read-only.
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".