BindWithItemId static method

Future<EmailMessage> BindWithItemId(
  1. ExchangeService service,
  2. ItemId id
)
Binds to an existing e-mail message and loads its first class properties. Calling this method results in a call to EWS. The service to use to bind to the e-mail message. The Id of the e-mail message to bind to.

Implementation

static Future<EmailMessage> BindWithItemId(
    ExchangeService service, ItemId id) {
  return EmailMessage.Bind(service, id, PropertySet.FirstClassProperties);
}