GetNextHeader Method

Return the next header in the current message part.

Syntax

object.GetNextHeader( HeaderField, HeaderValue )

Remarks

The GetNextHeader method allows an application to enumerate all of the headers in the current message. If the current message part does not contain any header fields, this method will return False.

HeaderField
A string which will contain the name of the next header field when the method returns.
HeaderValue
A string which will contain the value of the next header field when the method returns.

Example

The following example enumerates all of the headers in the main part of the current message and adds them to a listbox:

Dim strHeader As String, strValue As String
Dim bResult As Boolean

bResult = MailMessage1.GetFirstHeader(strHeader, strValue)
Do While bResult
    List1.AddItem strHeader & ": " & strValue
    bResult = MailMessage1.GetNextHeader(strHeader, strValue)
Loop

See Also

Part Property, GetFirstHeader Method, GetHeader Method, SetHeader Method


Copyright © 2008 Catalyst Development Corporation. All rights reserved.