// Token: 0x06001E1A RID: 7706 RVA: 0x000AE43C File Offset: 0x000AC63C internal static ArrayList GetAttachmentInformation(Item item, IList <AttachmentLink> attachmentLinks, bool isLoggedOnFromPublicComputer, bool isEmbeddedItem, bool forceEnableItemLink) { if (item.AttachmentCollection == null) { return(null); } return(AttachmentUtility.GetAttachmentList(item, attachmentLinks, isLoggedOnFromPublicComputer, isEmbeddedItem, true, forceEnableItemLink)); }
// Token: 0x06001E1B RID: 7707 RVA: 0x000AE464 File Offset: 0x000AC664 internal static ArrayList GetAttachmentInformation(OwaStoreObjectId owaConversationId, ItemPart itemPart, bool isLoggedOnFromPublicComputer, bool isEmbeddedItem, bool forceEnableItemLink) { if (itemPart.Attachments == null || itemPart.Attachments.Count == 0) { return(null); } return(AttachmentUtility.GetAttachmentList(owaConversationId, itemPart, isLoggedOnFromPublicComputer, isEmbeddedItem, true, forceEnableItemLink)); }
internal static ArrayList GetAttachmentInformation(Item item, IList <AttachmentLink> attachmentLinks, bool isLoggedOnFromPublicComputer, bool isEmbeddedItem) { if (item == null) { throw new ArgumentNullException("item"); } if (item.AttachmentCollection == null) { return(null); } int count = item.AttachmentCollection.Count; ArrayList arrayList = new ArrayList(); return(AttachmentUtility.GetAttachmentList(item, attachmentLinks, isLoggedOnFromPublicComputer, isEmbeddedItem, false)); }