Click or drag to resize
MimeKit

MimeUtilsEnumerateReferences(String) Method

Enumerate the Message-Id references such as those that can be found in the In-Reply-To or References headers.

Namespace: MimeKit.Utils
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public static IEnumerable<string> EnumerateReferences(
	string text
)

Parameters

text  String
The text to parse.

Return Value

IEnumerableString
The references.
Exceptions
ExceptionCondition
ArgumentNullExceptiontext is null.
Remarks
Incrementally parses Message-Ids (such as those from a References header in a MIME message) from the specified text.
See Also