public HtmlInjection(string injectHead, string injectTail, HeaderFooterFormat injectionFormat, bool filterHtml, HtmlTagCallback callback, bool testBoundaryConditions, Stream traceStream, IProgressMonitor progressMonitor)
 {
     this.injectHead             = injectHead;
     this.injectTail             = injectTail;
     this.injectionFormat        = injectionFormat;
     this.filterHtml             = filterHtml;
     this.callback               = callback;
     this.testBoundaryConditions = testBoundaryConditions;
     this.progressMonitor        = progressMonitor;
 }
Exemple #2
0
 public HtmlInjection(
     string injectHead,
     string injectTail,
     HeaderFooterFormat injectionFormat,
     bool filterHtml,
     HtmlTagCallback callback,
     bool testBoundaryConditions,
     IProgressMonitor progressMonitor)
 {
     InternalDebug.Assert(progressMonitor != null);
     this.injectHead             = injectHead;
     this.injectTail             = injectTail;
     this.injectionFormat        = injectionFormat;
     this.filterHtml             = filterHtml;
     this.callback               = callback;
     this.testBoundaryConditions = testBoundaryConditions;
     this.progressMonitor        = progressMonitor;
 }
 // Token: 0x06000ED5 RID: 3797 RVA: 0x000737A9 File Offset: 0x000719A9
 internal RtfToHtml SetHtmlTagCallback(HtmlTagCallback value)
 {
     this.HtmlTagCallback = value;
     return(this);
 }
Exemple #4
0
 internal RtfConversationBodyScanner SetHtmlTagCallback(HtmlTagCallback value)
 {
     base.HtmlTagCallback = value;
     return(this);
 }
 internal HtmlToHtmlSafe SetHtmlTagCallback(HtmlTagCallback value)
 {
     base.AssertNotLocked();
     this.HtmlTagCallback = value;
     return(this);
 }
Exemple #6
0
 internal HtmlToHtml SetHtmlTagCallback(HtmlTagCallback value)
 {
     HtmlTagCallback = value;
     return(this);
 }