Determines which (if any) pattern-matching is used for a specified search pattern.

This class is used by Realm.FindUsers and Realm.FindGroups.


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

Syntax

Visual Basic (Declaration)
Public Enum PrincipalSearchType
C#
public enum PrincipalSearchType
C++
public enum class PrincipalSearchType
J#
public enum PrincipalSearchType
JScript
public enum PrincipalSearchType

Members

Member NameDescription
NONEA constant representing a PrincipalSearchType instance of type NONE. This specifies that no pattern matching is used for the search pattern.
CUSTOMA constant representing a PrincipalSearchType instance of type CUSTOM. This specifies that the caller has full control of the pattern matching used for the search pattern.
PREFIX_MATCHA constant representing a PrincipalSearchType instance of type PREFIX_MATCH. This specifies that prefix pattern matching is used for the search pattern.
SUFFIX_MATCHA constant representing a PrincipalSearchType instance of type SUFFIX_MATCH. This specifies that suffix pattern matching is used for the search pattern.
CONTAINSA constant representing a PrincipalSearchType instance of type CONTAINS. This specifies that the search pattern must be contained in the search scope.
EXACTA constant representing a PrincipalSearchType instance of type EXACT. This specifies that the search pattern must be an exact match.

See Also