Microsoft Internet Security and Acceleration Server 2000

FPCClientSettingsSection.Value Property

Gets or sets the value associated with the given name.

VBScript Syntax[VBScript]

FPCClientSettingsSection.Value (sName)[ = sValue ]

C++ Syntax[C++]

HRESULT get_Value(
  BSTR psName, 
  VARIANT *psValue
);

HRESULT put_Value(
  BSTR sName, 
  VARIANT sValue
);

Parameters

sName
Specifies the parameter name for which to get or set the value. The name can be of almost any type and is not necessarily a string.
sValue
The value associated with the parameter specified by the sName parameter.

The property is read-write.

Remarks

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

FPCClientSettingsSection.Value("x") = 1

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

Applies To

FPCClientSettingsSection