Click or drag to resize
MimeKit

SearchQueryLargerThan Method

Match messages that are larger than the specified number of octets.

Namespace: MailKit.Search
Assembly: MailKit (in MailKit.dll) Version: 4.7.1
Syntax
C#
public static NumericSearchQuery LargerThan(
	int octets
)

Parameters

octets  Int32
The number of octets.

Return Value

NumericSearchQuery
A NumericSearchQuery.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionoctets is a negative value.
Remarks

Matches messages that are larger than the specified number of octets.

Note  Note
This is equivalent to the LARGER search key as defined in rfc3501.
See Also