コード例 #1
0
ファイル: HtmlBuilder.cs プロジェクト: BclEx/BclEx-Web
 /// <summary>
 /// Initializes a new instance of the <see cref="HtmlBuilder"/> class.
 /// </summary>
 /// <param name="w">The w.</param>
 public HtmlBuilder(HtmlTextWriterEx w)
 {
     _textWriter = w;
 }
コード例 #2
0
ファイル: HtmlTextWriterEx.cs プロジェクト: BclEx/BclEx-Web
 /// <summary>
 /// Creates the HTML builder.
 /// </summary>
 /// <param name="w">The w.</param>
 /// <returns></returns>
 public virtual HtmlBuilder CreateHtmlBuilder(HtmlTextWriterEx w)
 {
     return new HtmlBuilder(w);
 }
コード例 #3
0
 public HtmlBuilder(HtmlTextWriterEx w)
 {
     _textWriter = w;
 }
コード例 #4
0
 public virtual HtmlBuilder CreateHtmlBuilder(HtmlTextWriterEx w)
 {
     return(new HtmlBuilder(w));
 }