Click or drag to resize
MimeKit

ExperimentalMimeParserOnMimePartContentBegin Method

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

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
protected override void OnMimePartContentBegin(
	long beginOffset,
	int beginLineNumber,
	CancellationToken cancellationToken
)

Parameters

beginOffset  Int64
The offset into the stream where the MIME part content began.
beginLineNumber  Int32
The line number where the MIME part content began.
cancellationToken  CancellationToken
The cancellation token.
Remarks

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

This method is always paired with a corresponding call to OnMimePartContentEnd(Int64, Int32, Int64, Int32, NullableNewLineFormat, CancellationToken).

See Also