EwsItem Class
Represents an item in MS Exchange folder (a mail message, contact, appointment, etc).
Inheritance Hierarchy
SystemObject
  MailBee.EwsMailEwsItem

Namespace: MailBee.EwsMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public class EwsItem

The EwsItem type exposes the following members.

Constructors
  NameDescription
Public methodEwsItem(ItemId)
Creates a new EwsItem from the specified ID.
Public methodEwsItem(String)
Creates a new EwsItem from the specified unique ID.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyBcc
Gets a reference to the collection of BCC e-mail addresses.
Public propertyBodyHtmlText
Gets the HTML body text of the given message.
Public propertyBodyPlainText
Gets the plain-text body text of the given message.
Public propertyCc
Gets a reference to the collection of CC e-mail addresses.
Public propertyCodePage
Codepage used to compose the message.
Public propertyDate
Gets the date and time when the message was composed.
Public propertyDateReceived
Gets the date and time when the message was received by the mail server.
Public propertyDatesAsUtc
Indicates if MailBee should return date and time according to UTC standard.
Public propertyFrom
Gets a reference to From e-mail address.
Public propertyId
Gets the EWS item ID.
Public propertyIsRead
Gets or sets read/unread status of the mail message.
Public propertyMailBeeMessage
Gets a reference to MailBee's MailMessage object representing the mail message.
Public propertyNativeItem
Get a reference to EWS Managed API Item representing the given EWS item.
Public propertyNativeMessage
Gets a reference to EWS Managed API EmailMessage object representing the mail message.
Public propertyReplyTo
Gets a reference to Reply-To e-mail address.
Public propertySize
The size of the item in bytes.
Public propertySubject
Get the subject of the given message.
Public propertyTo
Gets a reference to the collection of To e-mail addresses.
Public propertyUniqueId
Gets the Unique-ID string.
Top
Remarks
In Ews topic, you can find examples how to get mail messages from MS Exchange server, modify items (add/remove attachments and set Unread flag).
See Also