PreferencesStore Class
Provides a container to save and load user preferences.
Assembly: Microsoft.Web.Management (in Microsoft.Web.Management.dll)
| Name | Description | |
|---|---|---|
![]() | IsEmpty | Gets a value indicating whether the preference store is empty. |
| Name | Description | |
|---|---|---|
![]() | ContainsValue(String) | Gets a value indicating whether the specified name exists in the preference store. |
![]() | Equals(Object) | (Inherited from Object.) |
![]() | GetHashCode() | (Inherited from Object.) |
![]() | GetType() | (Inherited from Object.) |
![]() | GetValue(String, Boolean) | Gets the value portion of the specified name/value pair from the preference store, using the specified default Boolean value. |
![]() | GetValue(String, Int32) | Gets the value portion of the specified name/value pair from the preference store, using the specified default integer value. |
![]() | GetValue(String, String) | Gets the value portion of the specified name/value pair from the preference store, using the specified default string value. |
![]() | Reset() | Deletes the preference store. |
![]() | ResetValue(String) | Removes the name/value pair from the preference store. |
![]() | SetValue(String, Boolean, Boolean) | Removes, adds, or replaces an item in the preference store, using the specified Boolean values. |
![]() | SetValue(String, Int32, Int32) | Removes, adds, or replaces an item in the preference store, using the specified integer values. |
![]() | SetValue(String, String, String) | Removes, adds, or replaces an item in the preference store, using the specified string values. |
![]() | ToString() | (Inherited from Object.) |
The preferences store is implemented as a specialized case-sensitive dictionary that stores name/value pairs.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

