Specifies the search filter for querying a user or users. The filter must be in the following format: "(&(objectClass=user_defined_class)(an_attribute={0}))", where user_defined_class is the object class you want (for example, user or person) and an_attribute is the LDAP server-specific attribute (for example, samAccountName, cn, or uid).

The default value of this property is unique to the directory service provider, as follows:

  • ActiveDirectory: (&(objectClass=user)(samAccountName={0})), where samAccountName serves as the short name.
  • ADAM and AD LDS: (&(objectClass=person)(member={0}))
  • Oracle Directory Server: (&(objectClass=person)(uid={0}))
  • Novell: (&(objectClass=person)(cn={0}))
  • IBM: (&(objectClass=person)(cn={0}))
  • OID: (&(objectClass=person)(cn={0}))

Namespace:  FileNet.Api.Admin
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Property UserSearchFilter As String
C#
string UserSearchFilter { get; set; }
Visual C++
property String^ UserSearchFilter {
	String^ get ();
	void set (String^ value);
}
JavaScript
function get_userSearchFilter();
function set_userSearchFilter(value);

ToggleRemarks

ToggleSee Also