Logically ORs multiple search conditions, meaning a message will be included in the search result if it meets at least either of the conditions.

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

Syntax

C#
public SearchCondition Or(
	SearchCondition other
)

Parameters

other
Type: S22.Imap..::..SearchCondition
A search condition to logically OR 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