Click or drag to resize
PeoplePickerSettings Class
Specifies the settings for all controls that can be used for selecting user accounts.
Inheritance Hierarchy
SystemObject
  Colygon.MatchPoint.Core.UserManagementPeoplePickerSettings

Namespace: Colygon.MatchPoint.Core.UserManagement
Assembly: Colygon.MatchPoint (in Colygon.MatchPoint.dll) Version: 2013.11.0.0
Syntax
C#
[SerializableAttribute]
public sealed class PeoplePickerSettings

The PeoplePickerSettings type exposes the following members.

Constructors
  NameDescription
Public methodPeoplePickerSettings
Initializes a new instance of the PeoplePickerSettings class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldCustomLdapFilter
Specifies a custom LDAP filter that is used to look up users and groups. A contains filter on properties referenced in 'DisplayNamePattern' will be used, if left empty. Performance issues can be solved if a 'starts with' filter is used. E.g.: '(CN={0}*)' or '(|(SN={0}*)(givenName={0}*))'. '{0}' will be replaced with the search text entered in the people picker. This setting will be ignored if 'UseUserInformationList' is set to 'true'.
Public fieldDisplayNamePattern
Specifies a pattern that is used to display AD accounts. Use '{DataItem.PropertyName}' to access LDAP properties of given account. If this parameter is not specified, the LDAP property 'CN' will be displayed. This setting will be ignored if 'UseUserInformationList' is set to 'true'.
Public fieldResolveMode
Specifies the mode that should be used to resolve accounts. Resolve mode 'SharePoint' will use the 'User Information List' on the current site collection to resolve accounts. This mode can be used to improve performance on environments with slow LDAP connectivity.
Top
Remarks
This class can be used as a configuration element within the MatchPointConfiguration class.
See Also