Click or drag to resize
MimeKit

MimeReaderOnHeadersBegin Method

Called when the beginning of a list of headers is encountered in the stream.

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

Parameters

beginOffset  Int64
The offset into the stream where the headers begin.
beginLineNumber  Int32
The line number where the list of headers begin.
cancellationToken  CancellationToken
The cancellation token.
Remarks

Called when the beginning of a list of headers is encountered in the stream.

This method is always paired with a corresponding call to OnHeadersEnd(Int64, Int32, Int64, Int32, CancellationToken) when the end of the list of headers are found.

See Also