// Token: 0x06001E17 RID: 7703 RVA: 0x000AE3A8 File Offset: 0x000AC5A8
 private static void RenderAttachmentWell(TextWriter output, AttachmentWellType wellType, ArrayList attachmentList, UserContext userContext, bool renderEmptyWell, bool isConversationAndIrmCopyRestricted)
 {
     output.Write("<div id=\"divAtch\" ");
     if (wellType == AttachmentWellType.ReadWrite)
     {
         output.Write("_isRW=\"1\" class=\"awRW\" ");
     }
     else
     {
         output.Write("class=\"awRO\" ");
     }
     if (Utilities.GetEmbeddedDepth(HttpContext.Current.Request) < AttachmentPolicy.MaxEmbeddedDepth)
     {
         output.Write("_isEventAttach=\"1\" ");
     }
     output.Write(">");
     if (!renderEmptyWell)
     {
         AttachmentWell.RenderAttachments(output, wellType, attachmentList, userContext, isConversationAndIrmCopyRestricted);
     }
     output.Write("</div>");
 }
 // Token: 0x06001E1E RID: 7710 RVA: 0x000AE504 File Offset: 0x000AC704
 public static void RenderAttachments(TextWriter output, AttachmentWellType wellType, ArrayList attachmentList, UserContext userContext)
 {
     AttachmentWell.RenderAttachments(output, wellType, attachmentList, userContext, false);
 }