Click or drag to resize
MimeKit

MimeReaderOnMimePartBeginAsync Method

Called when the beginning of a MIME part is encountered in the stream.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
protected virtual Task OnMimePartBeginAsync(
	ContentType contentType,
	long beginOffset,
	int beginLineNumber,
	CancellationToken cancellationToken
)

Parameters

contentType  ContentType
The parsed Content-Type header of the MIME part.
beginOffset  Int64
The offset into the stream where the MIME part begins.
beginLineNumber  Int32
The line number where the MIME part begins.
cancellationToken  CancellationToken
The cancellation token.

Return Value

Task
An asynchronous task context.
Remarks

Called when the beginning of a MIME part is encountered in the stream.

This method is always paired with a corresponding call to OnMimePartEndAsync(ContentType, Int64, Int32, Int64, Int64, Int32, CancellationToken) when the end of the MIME part is found.

See Also