Click or drag to resize
MimeKit

MimeReaderOnMboxMarkerBegin Method

Called when an Mbox marker is encountered in the stream.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.10.0
Syntax
C#
protected virtual void OnMboxMarkerBegin(
	long beginOffset,
	int lineNumber,
	CancellationToken cancellationToken
)

Parameters

beginOffset  Int64
The offset into the stream where the mbox marker begins.
lineNumber  Int32
The line number where the mbox marker exists within the stream.
cancellationToken  CancellationToken
The cancellation token.
Remarks

When the stream is specified to be in Mbox format, this method will be called whenever the parser encounters an Mbox marker.

It is not necessary to override this method unless it is desirable to track the offsets of mbox markers within a stream or to extract the mbox marker itself.

See Also