Click or drag to resize
MimeKit

ExperimentalMimeParserOnMultipartEpilogueEnd Method

Called when the end of the epilogue of a multipart is encountered in the stream.

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

Parameters

beginOffset  Int64
The offset into the stream where the multipart epilogue began.
beginLineNumber  Int32
The line number where the multipart epilogue began.
endOffset  Int64
The offset into the stream where the multipart epilogue ended.
lines  Int32
The length of the multipart epilogue as measured in lines.
cancellationToken  CancellationToken
The cancellation token.
Remarks

Called when the end of the epilogue of a multipart is encountered in the stream.

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

See Also