MapiCalendar.GetUnderlyingMessage

MapiCalendar.GetUnderlyingMessage method

Retrieves the underlying MapiMessage object.

public MapiMessage GetUnderlyingMessage()

Return Value

The MapiMessage object.

Examples

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

[C#]

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

[Visual Basic]

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

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

See Also