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 _
)
public ReceivedHeader (
string from,
string fromTcpInfo,
string by,
string byTcpInfo,
string forMailbox,
string with,
string id,
string via,
string date
)
public:
ReceivedHeader (
String^ from,
String^ fromTcpInfo,
String^ by,
String^ byTcpInfo,
String^ forMailbox,
String^ with,
String^ id,
String^ via,
String^ date
)
public ReceivedHeader (
String from,
String fromTcpInfo,
String by,
String byTcpInfo,
String forMailbox,
String with,
String id,
String via,
String date
)
public function ReceivedHeader (
from : String,
fromTcpInfo : String,
by : String,
byTcpInfo : String,
forMailbox : String,
with : String,
id : String,
via : String,
date : String
)
Parameters
- from
The 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
The value of the TCP-info of the From-domain clause of this ReceivedHeader object.
- by
The 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
The value of the TCP-info of the By-domain clause of this ReceivedHeader object.
- forMailbox
The value of the path or mailbox for the Received header represented by this ReceivedHeader object.
- with
The protocol used to preprocess the Received header represented by this ReceivedHeader object.
- id
The ID of the message associated with the Received header represented by this ReceivedHeader object.
- via
The link for the message associated with the Received header represented by this ReceivedHeader object.
- date
The date the message associated with the Received header represented by this ReceivedHeader object was processed.
Platforms
Development Platforms
Windows XP Professional with Service Pack 2 (SP2), Windows Server 2003,
Target Platforms
Windows Server 2003
See Also