Cloud Mail 2020 Android Edition

Questions / Feedback?

AttachmentList Event

Fired when an attachment is retrieved from the server.

Syntax

public class DefaultOffice365EventListener implements Office365EventListener {
  ...
  public void attachmentList(Office365AttachmentListEvent e) {}
  ...
}

public class Office365AttachmentListEvent {
  public String id;
  public String name;
  public String contentType;
  public String contentLocation;
  public byte[] contentBytes;
  public String contentId;
  public String lastModifiedDateTime;
  public boolean isInline;
  public int size;
}

Remarks

The AttachmentList event is fired for each attachment retrieved from the server when ListAttachments is called.

Copyright (c) 2022 /n software inc. - All rights reserved.
Cloud Mail 2020 Android Edition - Version 20.0 [Build 8308]