Microsoft Internet Security and Acceleration Server 2000

FPCVendorParametersSet.Value Property

Gets or sets the value associated with the given name.

VBScript Syntax[VBScript]

FPCVendorParametersSet.Value (sName)[ = vValue ]

C++ Syntax[C++]

HRESULT get_Value(
  BSTR sName, 
  VARIANT *pvValue
);
 
HRESULT put_Value(
  BSTR sName, 
  VARIANT vValue
);

Parameters

sName
Specifies the parameter name for which to retrieve the value.
vValue
The value associated with the name. The value can be of almost any type and is not necessarily a string.

The property is read-write.

Remarks

The FPCVendorParametersSet object is used to store data that is defined as {name, value} pairs by using the Value property. The following example stores a property named x having a value of 1:

FPCVendorParametersSet.Value("x") = 1

The phrase Value("x") will return the value.

The Value property is also the default property. The following examples are equivalent:

obj.Value("x) 
obj("x") 

Applies To

FPCVendorParametersSet