Click or drag to resize
BaseUserSetting Class
Base class for user-specific settings that are persisted within a SharePoint list on the MatchPoint instance administration site.
Inheritance Hierarchy

Namespace: Colygon.MatchPoint.Core.UserSettings
Assembly: Colygon.MatchPoint (in Colygon.MatchPoint.dll) Version: 2013.11.0.0
Syntax
C#
[SerializableAttribute]
public abstract class BaseUserSetting : IComparable<BaseUserSetting>

The BaseUserSetting type exposes the following members.

Constructors
  NameDescription
Protected methodBaseUserSetting(MPInstance)
Initializes a new instance of the BaseUserSetting class
Protected methodBaseUserSetting(SPListItem, MPInstance)
Initializes a new instance of the BaseUserSetting class
Top
Properties
Methods
  NameDescription
Public methodCompareTo
Compares the current user settings object to the specified object.
Protected methodStatic memberCreateField
Protected methodCreateList
Public methodDelete
Deletes this user settings object.
Public methodDoesUserHaveEditPermission
Returns true if the current user has edit permissions on this user settings object
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Protected methodStatic memberFindT
Protected methodStatic memberFindAllT
Protected methodStatic memberGetDistinctFieldValue
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Protected methodStatic memberGetList
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodStatic memberLoadT
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUpdate
Updates this user settings object.
Protected methodUpdateItem
Top
Fields
  NameDescription
Public fieldCategory
$Resources:UserSettingCategoryDescription
Public fieldIsPublic
$Resources:UserSettingIsPublicDescription
Public fieldName
Top
Remarks
Examples for applications of user-specific settings within MatchPoint are FavoriteTagSet and SearchDefinition.

You can extend this class to implement a custom object for storing user-specific settings.

See Also