MapiContact.GetUnderlyingMessage

MapiContact.GetUnderlyingMessage method

Retrieves the underlying MapiMessage object.

public MapiMessage GetUnderlyingMessage()

Return Value

The MapiMessage object.

Examples

Retrieves the underlying MAPI message from a MapiContact object and prints out its message class.

[C#]

// Retrieve the underlying MAPI message from the MapiContact object
MapiMessage msg = mapiContact.GetUnderlyingMessage();
   
// Print out the message class of the MAPI message
// Will output "IPM.Contact"
Console.WriteLine(msg.MessageClass);

[Visual Basic]

' Retrieve the underlying MAPI message from the MapiContact object
Dim msg As MapiMessage = mapiContact.GetUnderlyingMessage()

' Print out the message class of the MAPI message
' Will output "IPM.Contact"
Console.WriteLine(msg.MessageClass)

See Also