Click or drag to resize

ImapThread Method (ThreadMethod)

Creates new threading query.

Namespace:  Limilabs.Client.IMAP
Assembly:  Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax
public FluentThread Thread(
	ThreadMethod method
)

Parameters

method
Type: Limilabs.Client.IMAPThreadMethod
Threading method that should be used.

Return Value

Type: FluentThread
New threading query.
Examples
List<FluentThread> threads = imap.Thread(ThreadMethod.OrderedSubject).Where(Expression.Text("text"));
Examples
List<FluentThread> threads = imap.Thread(ThreadMethod.OrderedSubject).Where(Expression.Text("text")).ResultAs(Numbers);
See Also