Represents the type of pattern matching that should be performed.

Namespace: ININ.IceLib.Directories
Assembly: ININ.IceLib.Directories (in ININ.IceLib.Directories.dll) Version: 0.0.0.0 (22.3.0.218)

Syntax

C#
public enum ContactFilterType
Visual Basic
Public Enumeration ContactFilterType

Members

Member nameValueDescription
Exact0 The filter matches a property exactly.
Prefix1 The filter matches the prefix of a property's value.
Exists2 The filter matches if the property exists. That is it has a non-empty value.
Empty3 The filter matches if the property value is empty. That is it does not have a value.
Wildcards4 The filter matches using a expression that contains wildcards. The filter expression may contain wildcard symbols. A "*" will match zero or more characters. A "?" will match any single character. For example "Dev*" would match "Developers", "Development-Asia", and "Devices". "T?m" would match "Tim" and "Tom" but not "Team". This filter type is not allowed for the AccessRights property.

Version Information

Supported for IC Server version 2015 R1 and beyond.
For 4.0, supported for IC Server version 4.0 GA and beyond.
For 3.0, supported for IC Server version 3.0 GA and beyond.

See Also