Set Method
Sets the value of an application preference.
Syntax
void Set(
System.string categoryName,
System.string prefName,
System.object prefValue
)Sub Set( _
ByVal categoryName As System.String, _
ByVal prefName As System.String, _
ByVal prefValue As System.Object _
) Parameters
| Name | Description |
|---|---|
| categoryName | The category that this preference should be bucketed under. This should not be null or empty. |
| prefName | The name of the preference that we are setting. |
| prefValue | The value of the preference that we are setting. |