Specifies the search filter for querying a group or groups. 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) 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=group)(samAccountName={0})), where samAccountName serves as the short name.
  • ADAM and AD LDS: (&(objectClass=group)(person={0}))
  • SunOne: (&(objectClass=groupOfUniqueNames)(cn={0}))
  • Novell: (&(objectClass=groupOfNames)(cn={0}))
  • IBM: ((&(cn={0})(|objectClass=groupOfNames)(&objectClass=groupOfUniqueNames)))

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

Syntax

Visual Basic (Declaration)
Property GroupSearchFilter As String
C#
string GroupSearchFilter { get; set; }
C++
property string GroupSearchFilter abstract  {
    String get();
    void set(String value);
}
J#
/** property */
public string get_GroupSearchFilter();

/** property */
public void set_GroupSearchFilter(string value);
JScript
public function get GroupSearchFilter() : String

public function set GroupSearchFilter(value : String);

Remarks

See Also