Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The MimeDocument.EndOfHeadersCallback callback is called when the end of a root Multipurpose Internet Mail Extensions (MIME) part has been reached.
Namespace: Microsoft.Exchange.Data.Mime
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Delegate Sub EndOfHeadersCallback ( _
part As MimePart, _
<OutAttribute> ByRef stopLoading As Boolean _
)
'Usage
Dim instance As New EndOfHeadersCallback(AddressOf HandlerMethod)
public delegate void EndOfHeadersCallback(
MimePart part,
out bool stopLoading
)
Parameters
part
Type: Microsoft.Exchange.Data.Mime.MimePartThe MIME part for which the end has been reached.
stopLoading
Type: System.BooleanSet this to true if there are no more headers in part. Otherwise, set it to false.