Logically ANDs multiple search conditions, meaning a message will only be included in the search result if both of the ANDed conditions are met.

Namespace: S22.Imap
Assembly: S22.Imap (in S22.Imap.dll) Version: 3.6.0.0 (3.6.0.0)

Syntax

C#
public SearchCondition And(
	SearchCondition other
)

Parameters

other
Type: S22.Imap..::..SearchCondition
A search condition to logically AND this SearchCondition instance with.

Return Value

A new SearchCondition instance which can be further chained with other search conditions.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionThe other parameter is null.

See Also