// Token: 0x06001E16 RID: 7702 RVA: 0x000AE38C File Offset: 0x000AC58C
 public static void RenderEmptyAttachmentWell(TextWriter output, AttachmentWellType wellType)
 {
     if (output == null)
     {
         throw new ArgumentNullException("output");
     }
     AttachmentWell.RenderAttachmentWell(output, wellType, null, null, true, false);
 }
 // Token: 0x06001E15 RID: 7701 RVA: 0x000AE356 File Offset: 0x000AC556
 public static void RenderAttachmentWell(TextWriter output, AttachmentWellType wellType, ArrayList attachmentList, UserContext userContext, bool isConversationAndIrmCopyRestricted)
 {
     if (output == null)
     {
         throw new ArgumentNullException("output");
     }
     if (userContext == null)
     {
         throw new ArgumentNullException("userContext");
     }
     if (wellType == AttachmentWellType.ReadOnly && AttachmentUtility.IsLevelOneAndBlockOnly(attachmentList))
     {
         return;
     }
     AttachmentWell.RenderAttachmentWell(output, wellType, attachmentList, userContext, false, isConversationAndIrmCopyRestricted);
 }
 // Token: 0x06001E14 RID: 7700 RVA: 0x000AE34A File Offset: 0x000AC54A
 public static void RenderAttachmentWell(TextWriter output, AttachmentWellType wellType, ArrayList attachmentList, UserContext userContext)
 {
     AttachmentWell.RenderAttachmentWell(output, wellType, attachmentList, userContext, false);
 }