// Token: 0x06000E62 RID: 3682 RVA: 0x0005BB7C File Offset: 0x00059D7C
 protected void RenderPartialFailure(string messageHtml, string titleHtml, ButtonDialogIcon icon, OwaEventHandlerErrorCode errorCode)
 {
     if (messageHtml == null)
     {
         throw new ArgumentNullException("message");
     }
     this.Writer.Write("<div id=err _msg=\"");
     this.Writer.Write(messageHtml);
     this.Writer.Write("\"");
     if (errorCode != OwaEventHandlerErrorCode.NotSet)
     {
         this.Writer.Write(" _cd=");
         this.Writer.Write((int)errorCode);
     }
     if (titleHtml != null)
     {
         this.Writer.Write(" _ttl=\"");
         this.Writer.Write(titleHtml);
         this.Writer.Write("\"");
     }
     if (icon != ButtonDialogIcon.NotSet)
     {
         this.Writer.Write(" _icn=\"");
         this.Writer.Write((int)icon);
         this.Writer.Write("\"");
     }
     this.Writer.Write("></div>");
 }
 // Token: 0x06000E61 RID: 3681 RVA: 0x0005BB50 File Offset: 0x00059D50
 protected void RenderPartialFailure(Strings.IDs messageString, Strings.IDs?titleString, ButtonDialogIcon icon, OwaEventHandlerErrorCode errorCode)
 {
     this.RenderPartialFailure(LocalizedStrings.GetHtmlEncoded(messageString), (titleString != null) ? LocalizedStrings.GetHtmlEncoded(titleString.Value) : null, icon, errorCode);
 }
 // Token: 0x06000E60 RID: 3680 RVA: 0x0005BB43 File Offset: 0x00059D43
 protected void RenderPartialFailure(Strings.IDs messageString, Strings.IDs?titleString, ButtonDialogIcon icon)
 {
     this.RenderPartialFailure(messageString, titleString, icon, OwaEventHandlerErrorCode.NotSet);
 }