Interface IMapiMessageItem

IMapiMessageItem interface

Defines the base interface for all Outlook message item types including messages, appointments, tasks, contacts, and notes. This interface provides common properties for accessing message class, item type, body content, and subject across different Outlook item types.

public interface IMapiMessageItem

Properties

NameDescription
Body { get; set; }Gets message body
MessageClass { get; }Gets message class
Subject { get; set; }Gets message subject
SupportedType { get; }Gets the supported item type.

Remarks

Implementing types include MapiMessage, MapiCalendar, MapiTask, MapiContact, and other message item types in the Aspose.Email library. The interface provides a consistent way to access common properties regardless of the specific Outlook item type.

See Also