ReceivedHeader constructor
The ReceivedHeader constructor creates a new ReceivedHeader object.
Namespace: Microsoft.Exchange.Data.Mime
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Sub New ( _
from As String, _
fromTcpInfo As String, _
by As String, _
byTcpInfo As String, _
forMailbox As String, _
with As String, _
id As String, _
via As String, _
date As String _
)
'Usage
Dim from As String
Dim fromTcpInfo As String
Dim by As String
Dim byTcpInfo As String
Dim forMailbox As String
Dim with As String
Dim id As String
Dim via As String
Dim date As String
Dim instance As New ReceivedHeader(from, fromTcpInfo, _
by, byTcpInfo, forMailbox, with, id, _
via, date)
public ReceivedHeader(
string from,
string fromTcpInfo,
string by,
string byTcpInfo,
string forMailbox,
string with,
string id,
string via,
string date
)
Parameters
from
Type: System.StringThe value to assign to the From clause. If the from parameter is passed as null, the constructor attempts to get this value from the fromTcpInfo parameter.
fromTcpInfo
Type: System.StringThe value of the TCP-info of the From-domain clause of this ReceivedHeader object.
by
Type: System.StringThe value to assign to the By clause. If the by parameter is passed as null, the constructor attempts to get this value from the byTcpInfo parameter.
byTcpInfo
Type: System.StringThe value of the TCP-info of the By-domain clause of this ReceivedHeader object.
forMailbox
Type: System.StringThe value of the path or mailbox for the Received header represented by this ReceivedHeader object.
with
Type: System.StringThe protocol used to preprocess the Received header represented by this ReceivedHeader object.
id
Type: System.StringThe ID of the message associated with the Received header represented by this ReceivedHeader object.
via
Type: System.StringThe link for the message associated with the Received header represented by this ReceivedHeader object.
date
Type: System.StringThe date the message associated with the Received header represented by this ReceivedHeader object was processed.