Microsoft Internet Security and Acceleration Server 2004 SDK

AllNames Property of IFPCVendorParametersSet[C++]

FPCVendorParametersSet.AllNames [Visual Basic]

[C++]

The AllNames property gets the names of all the parameters in the set.

HRESULT get_AllNames(
  VARIANT* pvItem
);

Parameters

pvItem
Pointer to a VARIANT that on return receives a safe array of strings containing the names of all the parameters in the set.

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 AllNames property gets the names of all the parameters in the set.

Property AllNames As Variant

Property Value

Array of strings containing the names of all the parameters in the set.

Remarks

This property is read-only.

Example Code

The AllNames property stores 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 values for two user-defined parameters, x and y:

Dim vps As FPCVendorParametersSet
...
vps.Value("x") = 1
vps.Value("y") = 2

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

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

FPCVendorParametersSet