Created by Docfx
  • Articles
  • Api Documentation
  • Api Documentation
  • Eighty
  • Html
Show / Hide Table of Contents
  • Eighty
    • Attr
    • Html
    • IHtmlRenderer<TModel>
    • TagBuilder
  • Eighty.AspNetCore
    • EightyHtmlContent
    • TwentyHtmlContent
  • Eighty.AspNetCore.Mvc
    • MvcBuilderExtensions
  • Eighty.AspNetCore.Mvc.ActionResults
    • EightyActionResultFactory
    • HtmlBuilderRendererResult<TModel>
    • HtmlBuilderResult
    • HtmlRendererResult<TModel>
    • HtmlResult
  • Eighty.AspNetCore.Mvc.ResultExecutors
    • HtmlBuilderRendererResultExecutor<TModel>
    • HtmlBuilderResultExecutor
    • HtmlRendererResultExecutor<TModel>
    • HtmlResultExecutor
  • Eighty.AspNetCore.Mvc.ViewFeatures
    • EightyMvcViewOptionsSetup
    • EightyViewAdapter<TModel>
    • EightyViewCollection
    • EightyViewEngine
    • EightyViewOptions
    • TwentyViewAdapter<TModel>
  • Eighty.Twenty
    • HtmlBuilder
    • IHtmlBuilderRenderer<TModel>
    • TagBuilder

Class Html

Represents HTML that can be written to a stream

Inheritance
Object
Html
Namespace: Eighty
Assembly: Eighty.dll
Syntax
public abstract class Html : object

Properties

| Improve this Doc View Source

CanWriteAsync

Can this Html write itself asynchronously?

Returns false if the HTML contains any calls to Builder(Func<HtmlBuilder>).

If this returns false, WriteAsync(TextWriter) will throw

Declaration
public bool CanWriteAsync { get; }
Property Value
Type Description
Boolean

A indicating whether this Html can write itself asynchronously

| Improve this Doc View Source

Empty

An empty chunk of Html

Declaration
public static Html Empty { get; }
Property Value
Type Description
Html

Methods

| Improve this Doc View Source

_(Html[])

Put some siblings next to each other.

Declaration
public static Html _(params Html[] siblings)
Parameters
Type Name Description
Html[] siblings
Returns
Type Description
Html
| Improve this Doc View Source

_(IEnumerable<Html>)

Put some siblings next to each other.

Declaration
public static Html _(IEnumerable<Html> siblings)
Parameters
Type Name Description
IEnumerable<Html> siblings
Returns
Type Description
Html
| Improve this Doc View Source

_(ImmutableArray<Html>)

Put some siblings next to each other.

Declaration
public static Html _(ImmutableArray<Html> siblings)
Parameters
Type Name Description
ImmutableArray<Html> siblings
Returns
Type Description
Html
| Improve this Doc View Source

_(ImmutableList<Html>)

Put some siblings next to each other.

Declaration
public static Html _(ImmutableList<Html> siblings)
Parameters
Type Name Description
ImmutableList<Html> siblings
Returns
Type Description
Html
| Improve this Doc View Source

_(List<Html>)

Put some siblings next to each other.

Declaration
public static Html _(List<Html> siblings)
Parameters
Type Name Description
List<Html> siblings
Returns
Type Description
Html
| Improve this Doc View Source

a(Attr[])

Build an a element.

Declaration
public static TagBuilder a(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

a(IEnumerable<Attr>)

Build an a element.

Declaration
public static TagBuilder a(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

a(String, String, String, String, String, String, String, String, String, String, String)

Build an a element.

Declaration
public static TagBuilder a(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string href = null, string rel = null, string target = null, string type = null, string download = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String href
String rel
String target
String type
String download
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

a_(Html[])

Build an a element without any attributes.

Declaration
public static Html a_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

a_(IEnumerable<Html>)

Build an a element without any attributes.

Declaration
public static Html a_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

abbr(Attr[])

Build an abbr element.

Declaration
public static TagBuilder abbr(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

abbr(IEnumerable<Attr>)

Build an abbr element.

Declaration
public static TagBuilder abbr(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

abbr(String, String, String, String, String, String)

Build an abbr element.

Declaration
public static TagBuilder abbr(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

abbr_(Html[])

Build an abbr element without any attributes.

Declaration
public static Html abbr_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

abbr_(IEnumerable<Html>)

Build an abbr element without any attributes.

Declaration
public static Html abbr_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

address(Attr[])

Build an address element.

Declaration
public static TagBuilder address(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

address(IEnumerable<Attr>)

Build an address element.

Declaration
public static TagBuilder address(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

address(String, String, String, String, String, String)

Build an address element.

Declaration
public static TagBuilder address(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

address_(Html[])

Build an address element without any attributes.

Declaration
public static Html address_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

address_(IEnumerable<Html>)

Build an address element without any attributes.

Declaration
public static Html address_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

article(Attr[])

Build an article element.

Declaration
public static TagBuilder article(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

article(IEnumerable<Attr>)

Build an article element.

Declaration
public static TagBuilder article(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

article(String, String, String, String, String, String)

Build an article element.

Declaration
public static TagBuilder article(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

article_(Html[])

Build an article element without any attributes.

Declaration
public static Html article_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

article_(IEnumerable<Html>)

Build an article element without any attributes.

Declaration
public static Html article_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

aside(Attr[])

Build an aside element.

Declaration
public static TagBuilder aside(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

aside(IEnumerable<Attr>)

Build an aside element.

Declaration
public static TagBuilder aside(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

aside(String, String, String, String, String, String)

Build an aside element.

Declaration
public static TagBuilder aside(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

aside_(Html[])

Build an aside element without any attributes.

Declaration
public static Html aside_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

aside_(IEnumerable<Html>)

Build an aside element without any attributes.

Declaration
public static Html aside_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

audio(Attr[])

Build an audio element.

Declaration
public static TagBuilder audio(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

audio(IEnumerable<Attr>)

Build an audio element.

Declaration
public static TagBuilder audio(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

audio(String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, Boolean)

Build an audio element.

Declaration
public static TagBuilder audio(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string src = null, string preload = null, string volume = null, bool autoplay = false, bool loop = false, bool muted = false, bool controls = false)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String src
String preload
String volume
Boolean autoplay
Boolean loop
Boolean muted
Boolean controls
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

audio_(Html[])

Build an audio element without any attributes.

Declaration
public static Html audio_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

audio_(IEnumerable<Html>)

Build an audio element without any attributes.

Declaration
public static Html audio_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

b(Attr[])

Build a b element.

Declaration
public static TagBuilder b(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

b(IEnumerable<Attr>)

Build a b element.

Declaration
public static TagBuilder b(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

b(String, String, String, String, String, String)

Build a b element.

Declaration
public static TagBuilder b(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

b_(Html[])

Build a b element without any attributes.

Declaration
public static Html b_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

b_(IEnumerable<Html>)

Build a b element without any attributes.

Declaration
public static Html b_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

base(Attr[])

Build a base element.

Declaration
public static Html base(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

base(IEnumerable<Attr>)

Build a base element.

Declaration
public static Html base(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

base(String, String, String, String, String, String, String, String)

Build a base element.

Declaration
public static Html base(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string href = null, string target = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String href
String target
Returns
Type Description
Html

The element

| Improve this Doc View Source

bdi(Attr[])

Build a bdi element.

Declaration
public static TagBuilder bdi(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

bdi(IEnumerable<Attr>)

Build a bdi element.

Declaration
public static TagBuilder bdi(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

bdi(String, String, String, String, String, String, String)

Build a bdi element.

Declaration
public static TagBuilder bdi(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string dir = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String dir
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

bdi_(Html[])

Build a bdi element without any attributes.

Declaration
public static Html bdi_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

bdi_(IEnumerable<Html>)

Build a bdi element without any attributes.

Declaration
public static Html bdi_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

bdo(Attr[])

Build a bdo element.

Declaration
public static TagBuilder bdo(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

bdo(IEnumerable<Attr>)

Build a bdo element.

Declaration
public static TagBuilder bdo(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

bdo(String, String, String, String, String, String, String)

Build a bdo element.

Declaration
public static TagBuilder bdo(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string dir = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String dir
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

bdo_(Html[])

Build a bdo element without any attributes.

Declaration
public static Html bdo_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

bdo_(IEnumerable<Html>)

Build a bdo element without any attributes.

Declaration
public static Html bdo_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

blockquote(Attr[])

Build a blockquote element.

Declaration
public static TagBuilder blockquote(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

blockquote(IEnumerable<Attr>)

Build a blockquote element.

Declaration
public static TagBuilder blockquote(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

blockquote(String, String, String, String, String, String)

Build a blockquote element.

Declaration
public static TagBuilder blockquote(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

blockquote_(Html[])

Build a blockquote element without any attributes.

Declaration
public static Html blockquote_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

blockquote_(IEnumerable<Html>)

Build a blockquote element without any attributes.

Declaration
public static Html blockquote_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

body(Attr[])

Build a body element.

Declaration
public static TagBuilder body(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

body(IEnumerable<Attr>)

Build a body element.

Declaration
public static TagBuilder body(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

body(String, String, String, String, String, String)

Build a body element.

Declaration
public static TagBuilder body(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

body_(Html[])

Build a body element without any attributes.

Declaration
public static Html body_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

body_(IEnumerable<Html>)

Build a body element without any attributes.

Declaration
public static Html body_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

br(Attr[])

Build a br element.

Declaration
public static Html br(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

br(IEnumerable<Attr>)

Build a br element.

Declaration
public static Html br(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

br(String, String, String, String, String, String)

Build a br element.

Declaration
public static Html br(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
Html

The element

| Improve this Doc View Source

Builder(Func<HtmlBuilder>)

Run the HtmlBuilder returned by builderFactory.

The Html returned from this method cannot write itself asynchronously; its CanWriteAsync will return false and its WriteAsync(TextWriter) method will throw .

builderFactory should generally return a newly created HtmlBuilder, not a cached instance. Returning a cached HtmlBuilder is risky if it's possible that this Html's Write(TextWriter) method will be called concurrently by multiple threads.

Declaration
public static Html Builder(Func<HtmlBuilder> builderFactory)
Parameters
Type Name Description
Func<HtmlBuilder> builderFactory

A function to create an HtmlBuilder

Returns
Type Description
Html

An instance of Html.

| Improve this Doc View Source

button(Attr[])

Build a button element.

Declaration
public static TagBuilder button(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

button(IEnumerable<Attr>)

Build a button element.

Declaration
public static TagBuilder button(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

button(String, String, String, String, String, String, String, String, String, Boolean, Boolean, String, String, String, String, String, String, String, String, Boolean)

Build a button element.

Declaration
public static TagBuilder button(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, string type = null, string value = null, bool autofocus = false, bool disabled = false, string src = null, string height = null, string width = null, string form = null, string formaction = null, string formmethod = null, string formtarget = null, string formenctype = null, bool formnovalidate = false)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String name
String type
String value
Boolean autofocus
Boolean disabled
String src
String height
String width
String form
String formaction
String formmethod
String formtarget
String formenctype
Boolean formnovalidate
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

button_(Html[])

Build a button element without any attributes.

Declaration
public static Html button_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

button_(IEnumerable<Html>)

Build a button element without any attributes.

Declaration
public static Html button_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

canvas(Attr[])

Build a canvas element.

Declaration
public static TagBuilder canvas(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

canvas(IEnumerable<Attr>)

Build a canvas element.

Declaration
public static TagBuilder canvas(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

canvas(String, String, String, String, String, String, String, String)

Build a canvas element.

Declaration
public static TagBuilder canvas(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string height = null, string width = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String height
String width
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

canvas_(Html[])

Build a canvas element without any attributes.

Declaration
public static Html canvas_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

canvas_(IEnumerable<Html>)

Build a canvas element without any attributes.

Declaration
public static Html canvas_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

caption(Attr[])

Build a caption element.

Declaration
public static TagBuilder caption(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

caption(IEnumerable<Attr>)

Build a caption element.

Declaration
public static TagBuilder caption(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

caption(String, String, String, String, String, String)

Build a caption element.

Declaration
public static TagBuilder caption(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

caption_(Html[])

Build a caption element without any attributes.

Declaration
public static Html caption_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

caption_(IEnumerable<Html>)

Build a caption element without any attributes.

Declaration
public static Html caption_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

cite(Attr[])

Build a cite element.

Declaration
public static TagBuilder cite(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

cite(IEnumerable<Attr>)

Build a cite element.

Declaration
public static TagBuilder cite(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

cite(String, String, String, String, String, String)

Build a cite element.

Declaration
public static TagBuilder cite(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

cite_(Html[])

Build a cite element without any attributes.

Declaration
public static Html cite_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

cite_(IEnumerable<Html>)

Build a cite element without any attributes.

Declaration
public static Html cite_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

code(Attr[])

Build a code element.

Declaration
public static TagBuilder code(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

code(IEnumerable<Attr>)

Build a code element.

Declaration
public static TagBuilder code(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

code(String, String, String, String, String, String)

Build a code element.

Declaration
public static TagBuilder code(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

code_(Html[])

Build a code element without any attributes.

Declaration
public static Html code_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

code_(IEnumerable<Html>)

Build a code element without any attributes.

Declaration
public static Html code_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

col(Attr[])

Build a col element.

Declaration
public static TagBuilder col(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

col(IEnumerable<Attr>)

Build a col element.

Declaration
public static TagBuilder col(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

col(String, String, String, String, String, String, String)

Build a col element.

Declaration
public static TagBuilder col(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string span = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String span
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

col_(Html[])

Build a col element without any attributes.

Declaration
public static Html col_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

col_(IEnumerable<Html>)

Build a col element without any attributes.

Declaration
public static Html col_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

colgroup(Attr[])

Build a colgroup element.

Declaration
public static TagBuilder colgroup(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

colgroup(IEnumerable<Attr>)

Build a colgroup element.

Declaration
public static TagBuilder colgroup(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

colgroup(String, String, String, String, String, String, String)

Build a colgroup element.

Declaration
public static TagBuilder colgroup(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string span = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String span
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

colgroup_(Html[])

Build a colgroup element without any attributes.

Declaration
public static Html colgroup_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

colgroup_(IEnumerable<Html>)

Build a colgroup element without any attributes.

Declaration
public static Html colgroup_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

data(Attr[])

Build a data element.

Declaration
public static TagBuilder data(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

data(IEnumerable<Attr>)

Build a data element.

Declaration
public static TagBuilder data(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

data(String, String, String, String, String, String, String)

Build a data element.

Declaration
public static TagBuilder data(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string value = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String value
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

data_(Html[])

Build a data element without any attributes.

Declaration
public static Html data_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

data_(IEnumerable<Html>)

Build a data element without any attributes.

Declaration
public static Html data_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

datalist(Attr[])

Build a datalist element.

Declaration
public static TagBuilder datalist(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

datalist(IEnumerable<Attr>)

Build a datalist element.

Declaration
public static TagBuilder datalist(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

datalist(String, String, String, String, String, String)

Build a datalist element.

Declaration
public static TagBuilder datalist(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

datalist_(Html[])

Build a datalist element without any attributes.

Declaration
public static Html datalist_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

datalist_(IEnumerable<Html>)

Build a datalist element without any attributes.

Declaration
public static Html datalist_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

dd(Attr[])

Build a dd element.

Declaration
public static TagBuilder dd(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dd(IEnumerable<Attr>)

Build a dd element.

Declaration
public static TagBuilder dd(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dd(String, String, String, String, String, String)

Build a dd element.

Declaration
public static TagBuilder dd(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dd_(Html[])

Build a dd element without any attributes.

Declaration
public static Html dd_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

dd_(IEnumerable<Html>)

Build a dd element without any attributes.

Declaration
public static Html dd_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

details(Attr[])

Build a details element.

Declaration
public static TagBuilder details(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

details(IEnumerable<Attr>)

Build a details element.

Declaration
public static TagBuilder details(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

details(String, String, String, String, String, String, Boolean)

Build a details element.

Declaration
public static TagBuilder details(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, bool open = false)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Boolean open
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

details_(Html[])

Build a details element without any attributes.

Declaration
public static Html details_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

details_(IEnumerable<Html>)

Build a details element without any attributes.

Declaration
public static Html details_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

dfn(Attr[])

Build a dfn element.

Declaration
public static TagBuilder dfn(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dfn(IEnumerable<Attr>)

Build a dfn element.

Declaration
public static TagBuilder dfn(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dfn(String, String, String, String, String, String)

Build a dfn element.

Declaration
public static TagBuilder dfn(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dfn_(Html[])

Build a dfn element without any attributes.

Declaration
public static Html dfn_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

dfn_(IEnumerable<Html>)

Build a dfn element without any attributes.

Declaration
public static Html dfn_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

dialog(Attr[])

Build a dialog element.

Declaration
public static TagBuilder dialog(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dialog(IEnumerable<Attr>)

Build a dialog element.

Declaration
public static TagBuilder dialog(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dialog(String, String, String, String, String, String, Boolean)

Build a dialog element.

Declaration
public static TagBuilder dialog(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, bool open = false)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Boolean open
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dialog_(Html[])

Build a dialog element without any attributes.

Declaration
public static Html dialog_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

dialog_(IEnumerable<Html>)

Build a dialog element without any attributes.

Declaration
public static Html dialog_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

div(Attr[])

Build a div element.

Declaration
public static TagBuilder div(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

div(IEnumerable<Attr>)

Build a div element.

Declaration
public static TagBuilder div(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

div(String, String, String, String, String, String)

Build a div element.

Declaration
public static TagBuilder div(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

div_(Html[])

Build a div element without any attributes.

Declaration
public static Html div_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

div_(IEnumerable<Html>)

Build a div element without any attributes.

Declaration
public static Html div_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

dl(Attr[])

Build a dl element.

Declaration
public static TagBuilder dl(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dl(IEnumerable<Attr>)

Build a dl element.

Declaration
public static TagBuilder dl(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dl(String, String, String, String, String, String)

Build a dl element.

Declaration
public static TagBuilder dl(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dl_(Html[])

Build a dl element without any attributes.

Declaration
public static Html dl_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

dl_(IEnumerable<Html>)

Build a dl element without any attributes.

Declaration
public static Html dl_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

doctype()

Write the <!DOCTYPE HTML> preamble.

Declaration
public static Html doctype()
Returns
Type Description
Html

An instance of Html.

| Improve this Doc View Source

doctypeHtml_(Html[])

Write the <!DOCTYPE HTML> preamble and create an html tag with children.

Declaration
public static Html doctypeHtml_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

An instance of Html.

| Improve this Doc View Source

dt(Attr[])

Build a dt element.

Declaration
public static TagBuilder dt(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dt(IEnumerable<Attr>)

Build a dt element.

Declaration
public static TagBuilder dt(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dt(String, String, String, String, String, String)

Build a dt element.

Declaration
public static TagBuilder dt(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

dt_(Html[])

Build a dt element without any attributes.

Declaration
public static Html dt_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

dt_(IEnumerable<Html>)

Build a dt element without any attributes.

Declaration
public static Html dt_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

em(Attr[])

Build an em element.

Declaration
public static TagBuilder em(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

em(IEnumerable<Attr>)

Build an em element.

Declaration
public static TagBuilder em(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

em(String, String, String, String, String, String)

Build an em element.

Declaration
public static TagBuilder em(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

em_(Html[])

Build an em element without any attributes.

Declaration
public static Html em_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

em_(IEnumerable<Html>)

Build an em element without any attributes.

Declaration
public static Html em_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

embed(Attr[])

Build an embed element.

Declaration
public static Html embed(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

embed(IEnumerable<Attr>)

Build an embed element.

Declaration
public static Html embed(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

embed(String, String, String, String, String, String, String, String, String, String)

Build an embed element.

Declaration
public static Html embed(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string src = null, string height = null, string width = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String type
String src
String height
String width
Returns
Type Description
Html

The element

| Improve this Doc View Source

fieldset(Attr[])

Build a fieldset element.

Declaration
public static TagBuilder fieldset(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

fieldset(IEnumerable<Attr>)

Build a fieldset element.

Declaration
public static TagBuilder fieldset(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

fieldset(String, String, String, String, String, String, String, Boolean, String)

Build a fieldset element.

Declaration
public static TagBuilder fieldset(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, bool disabled = false, string form = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String name
Boolean disabled
String form
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

fieldset_(Html[])

Build a fieldset element without any attributes.

Declaration
public static Html fieldset_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

fieldset_(IEnumerable<Html>)

Build a fieldset element without any attributes.

Declaration
public static Html fieldset_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

figcaption(Attr[])

Build a figcaption element.

Declaration
public static TagBuilder figcaption(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

figcaption(IEnumerable<Attr>)

Build a figcaption element.

Declaration
public static TagBuilder figcaption(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

figcaption(String, String, String, String, String, String)

Build a figcaption element.

Declaration
public static TagBuilder figcaption(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

figcaption_(Html[])

Build a figcaption element without any attributes.

Declaration
public static Html figcaption_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

figcaption_(IEnumerable<Html>)

Build a figcaption element without any attributes.

Declaration
public static Html figcaption_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

figure(Attr[])

Build a figure element.

Declaration
public static TagBuilder figure(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

figure(IEnumerable<Attr>)

Build a figure element.

Declaration
public static TagBuilder figure(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

figure(String, String, String, String, String, String)

Build a figure element.

Declaration
public static TagBuilder figure(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

figure_(Html[])

Build a figure element without any attributes.

Declaration
public static Html figure_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

figure_(IEnumerable<Html>)

Build a figure element without any attributes.

Declaration
public static Html figure_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

footer(Attr[])

Build a footer element.

Declaration
public static TagBuilder footer(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

footer(IEnumerable<Attr>)

Build a footer element.

Declaration
public static TagBuilder footer(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

footer(String, String, String, String, String, String)

Build a footer element.

Declaration
public static TagBuilder footer(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

footer_(Html[])

Build a footer element without any attributes.

Declaration
public static Html footer_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

footer_(IEnumerable<Html>)

Build a footer element without any attributes.

Declaration
public static Html footer_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

form(Attr[])

Build a form element.

Declaration
public static TagBuilder form(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

form(IEnumerable<Attr>)

Build a form element.

Declaration
public static TagBuilder form(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

form(String, String, String, String, String, String, String, String, String, String, String, String, Boolean)

Build a form element.

Declaration
public static TagBuilder form(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, string action = null, string method = null, string autocomplete = null, string target = null, string enctype = null, bool novalidate = false)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String name
String action
String method
String autocomplete
String target
String enctype
Boolean novalidate
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

form_(Html[])

Build a form element without any attributes.

Declaration
public static Html form_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

form_(IEnumerable<Html>)

Build a form element without any attributes.

Declaration
public static Html form_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

h1(Attr[])

Build an h1 element.

Declaration
public static TagBuilder h1(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h1(IEnumerable<Attr>)

Build an h1 element.

Declaration
public static TagBuilder h1(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h1(String, String, String, String, String, String)

Build an h1 element.

Declaration
public static TagBuilder h1(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h1_(Html[])

Build an h1 element without any attributes.

Declaration
public static Html h1_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

h1_(IEnumerable<Html>)

Build an h1 element without any attributes.

Declaration
public static Html h1_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

h2(Attr[])

Build an h2 element.

Declaration
public static TagBuilder h2(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h2(IEnumerable<Attr>)

Build an h2 element.

Declaration
public static TagBuilder h2(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h2(String, String, String, String, String, String)

Build an h2 element.

Declaration
public static TagBuilder h2(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h2_(Html[])

Build an h2 element without any attributes.

Declaration
public static Html h2_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

h2_(IEnumerable<Html>)

Build an h2 element without any attributes.

Declaration
public static Html h2_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

h3(Attr[])

Build an h3 element.

Declaration
public static TagBuilder h3(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h3(IEnumerable<Attr>)

Build an h3 element.

Declaration
public static TagBuilder h3(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h3(String, String, String, String, String, String)

Build an h3 element.

Declaration
public static TagBuilder h3(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h3_(Html[])

Build an h3 element without any attributes.

Declaration
public static Html h3_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

h3_(IEnumerable<Html>)

Build an h3 element without any attributes.

Declaration
public static Html h3_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

h4(Attr[])

Build an h4 element.

Declaration
public static TagBuilder h4(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h4(IEnumerable<Attr>)

Build an h4 element.

Declaration
public static TagBuilder h4(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h4(String, String, String, String, String, String)

Build an h4 element.

Declaration
public static TagBuilder h4(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h4_(Html[])

Build an h4 element without any attributes.

Declaration
public static Html h4_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

h4_(IEnumerable<Html>)

Build an h4 element without any attributes.

Declaration
public static Html h4_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

h5(Attr[])

Build an h5 element.

Declaration
public static TagBuilder h5(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h5(IEnumerable<Attr>)

Build an h5 element.

Declaration
public static TagBuilder h5(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h5(String, String, String, String, String, String)

Build an h5 element.

Declaration
public static TagBuilder h5(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h5_(Html[])

Build an h5 element without any attributes.

Declaration
public static Html h5_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

h5_(IEnumerable<Html>)

Build an h5 element without any attributes.

Declaration
public static Html h5_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

h6(Attr[])

Build an h6 element.

Declaration
public static TagBuilder h6(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h6(IEnumerable<Attr>)

Build an h6 element.

Declaration
public static TagBuilder h6(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h6(String, String, String, String, String, String)

Build an h6 element.

Declaration
public static TagBuilder h6(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

h6_(Html[])

Build an h6 element without any attributes.

Declaration
public static Html h6_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

h6_(IEnumerable<Html>)

Build an h6 element without any attributes.

Declaration
public static Html h6_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

head(Attr[])

Build a head element.

Declaration
public static TagBuilder head(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

head(IEnumerable<Attr>)

Build a head element.

Declaration
public static TagBuilder head(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

head(String, String, String, String, String, String)

Build a head element.

Declaration
public static TagBuilder head(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

head_(Html[])

Build a head element without any attributes.

Declaration
public static Html head_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

head_(IEnumerable<Html>)

Build a head element without any attributes.

Declaration
public static Html head_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

header(Attr[])

Build a header element.

Declaration
public static TagBuilder header(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

header(IEnumerable<Attr>)

Build a header element.

Declaration
public static TagBuilder header(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

header(String, String, String, String, String, String)

Build a header element.

Declaration
public static TagBuilder header(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

header_(Html[])

Build a header element without any attributes.

Declaration
public static Html header_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

header_(IEnumerable<Html>)

Build a header element without any attributes.

Declaration
public static Html header_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

hgroup(Attr[])

Build a hgroup element.

Declaration
public static TagBuilder hgroup(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

hgroup(IEnumerable<Attr>)

Build a hgroup element.

Declaration
public static TagBuilder hgroup(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

hgroup(String, String, String, String, String, String)

Build a hgroup element.

Declaration
public static TagBuilder hgroup(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

hgroup_(Html[])

Build a hgroup element without any attributes.

Declaration
public static Html hgroup_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

hgroup_(IEnumerable<Html>)

Build a hgroup element without any attributes.

Declaration
public static Html hgroup_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

hr(Attr[])

Build an hr element.

Declaration
public static Html hr(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

hr(IEnumerable<Attr>)

Build an hr element.

Declaration
public static Html hr(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

hr(String, String, String, String, String, String)

Build an hr element.

Declaration
public static Html hr(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
Html

The element

| Improve this Doc View Source

html(Attr[])

Build an html element.

Declaration
public static TagBuilder html(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

html(IEnumerable<Attr>)

Build an html element.

Declaration
public static TagBuilder html(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

html(String, String, String, String, String, String, String)

Build an html element.

Declaration
public static TagBuilder html(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string xmlns = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String xmlns
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

html_(Html[])

Build an html element without any attributes.

Declaration
public static Html html_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

html_(IEnumerable<Html>)

Build an html element without any attributes.

Declaration
public static Html html_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

i(Attr[])

Build an i element.

Declaration
public static TagBuilder i(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

i(IEnumerable<Attr>)

Build an i element.

Declaration
public static TagBuilder i(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

i(String, String, String, String, String, String)

Build an i element.

Declaration
public static TagBuilder i(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

i_(Html[])

Build an i element without any attributes.

Declaration
public static Html i_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

i_(IEnumerable<Html>)

Build an i element without any attributes.

Declaration
public static Html i_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

img(Attr[])

Build an img element.

Declaration
public static Html img(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

img(IEnumerable<Attr>)

Build an img element.

Declaration
public static Html img(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

img(String, String, String, String, String, String, String, String, String, String, String, String, String)

Build an img element.

Declaration
public static Html img(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string src = null, string alt = null, string height = null, string width = null, string srcset = null, string sizes = null, string crossorigin = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String src
String alt
String height
String width
String srcset
String sizes
String crossorigin
Returns
Type Description
Html

The element

| Improve this Doc View Source

input(Attr[])

Build an input element.

Declaration
public static TagBuilder input(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

input(IEnumerable<Attr>)

Build an input element.

Declaration
public static TagBuilder input(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

input(String, String, String, String, String, String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, Boolean, Boolean, String, String, String, String, String, String, String, String, String, String, String, String, String, String, Boolean)

Build an input element.

Declaration
public static TagBuilder input(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, string type = null, string multiple = null, string value = null, string placeholder = null, string size = null, string autocomplete = null, string list = null, bool autofocus = false, bool checked = false, bool disabled = false, bool readonly = false, bool required = false, string src = null, string height = null, string width = null, string max = null, string min = null, string step = null, string maxlength = null, string minlength = null, string pattern = null, string form = null, string formaction = null, string formmethod = null, string formtarget = null, string formenctype = null, bool formnovalidate = false)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String name
String type
String multiple
String value
String placeholder
String size
String autocomplete
String list
Boolean autofocus
Boolean checked
Boolean disabled
Boolean readonly
Boolean required
String src
String height
String width
String max
String min
String step
String maxlength
String minlength
String pattern
String form
String formaction
String formmethod
String formtarget
String formenctype
Boolean formnovalidate
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

input_(Html[])

Build an input element without any attributes.

Declaration
public static Html input_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

input_(IEnumerable<Html>)

Build an input element without any attributes.

Declaration
public static Html input_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

kbd(Attr[])

Build a kbd element.

Declaration
public static TagBuilder kbd(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

kbd(IEnumerable<Attr>)

Build a kbd element.

Declaration
public static TagBuilder kbd(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

kbd(String, String, String, String, String, String)

Build a kbd element.

Declaration
public static TagBuilder kbd(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

kbd_(Html[])

Build a kbd element without any attributes.

Declaration
public static Html kbd_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

kbd_(IEnumerable<Html>)

Build a kbd element without any attributes.

Declaration
public static Html kbd_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

label(Attr[])

Build a label element.

Declaration
public static TagBuilder label(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

label(IEnumerable<Attr>)

Build a label element.

Declaration
public static TagBuilder label(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

label(String, String, String, String, String, String, String)

Build a label element.

Declaration
public static TagBuilder label(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string for = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String for
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

label_(Html[])

Build a label element without any attributes.

Declaration
public static Html label_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

label_(IEnumerable<Html>)

Build a label element without any attributes.

Declaration
public static Html label_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

legend(Attr[])

Build a legend element.

Declaration
public static TagBuilder legend(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

legend(IEnumerable<Attr>)

Build a legend element.

Declaration
public static TagBuilder legend(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

legend(String, String, String, String, String, String)

Build a legend element.

Declaration
public static TagBuilder legend(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

legend_(Html[])

Build a legend element without any attributes.

Declaration
public static Html legend_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

legend_(IEnumerable<Html>)

Build a legend element without any attributes.

Declaration
public static Html legend_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

li(Attr[])

Build an li element.

Declaration
public static TagBuilder li(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

li(IEnumerable<Attr>)

Build an li element.

Declaration
public static TagBuilder li(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

li(String, String, String, String, String, String, String)

Build an li element.

Declaration
public static TagBuilder li(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string value = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String value
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

li_(Html[])

Build an li element without any attributes.

Declaration
public static Html li_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

li_(IEnumerable<Html>)

Build an li element without any attributes.

Declaration
public static Html li_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

link(Attr[])

Build a link element.

Declaration
public static Html link(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

link(IEnumerable<Attr>)

Build a link element.

Declaration
public static Html link(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

link(String, String, String, String, String, String, String, String, String, String, String, String)

Build a link element.

Declaration
public static Html link(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string crossorigin = null, string rel = null, string href = null, string type = null, string media = null, string sizes = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String crossorigin
String rel
String href
String type
String media
String sizes
Returns
Type Description
Html

The element

| Improve this Doc View Source

main(Attr[])

Build a main element.

Declaration
public static TagBuilder main(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

main(IEnumerable<Attr>)

Build a main element.

Declaration
public static TagBuilder main(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

main(String, String, String, String, String, String)

Build a main element.

Declaration
public static TagBuilder main(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

main_(Html[])

Build a main element without any attributes.

Declaration
public static Html main_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

main_(IEnumerable<Html>)

Build a main element without any attributes.

Declaration
public static Html main_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

mark(Attr[])

Build a mark element.

Declaration
public static TagBuilder mark(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

mark(IEnumerable<Attr>)

Build a mark element.

Declaration
public static TagBuilder mark(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

mark(String, String, String, String, String, String)

Build a mark element.

Declaration
public static TagBuilder mark(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

mark_(Html[])

Build a mark element without any attributes.

Declaration
public static Html mark_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

mark_(IEnumerable<Html>)

Build a mark element without any attributes.

Declaration
public static Html mark_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

menu(Attr[])

Build a menu element.

Declaration
public static TagBuilder menu(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

menu(IEnumerable<Attr>)

Build a menu element.

Declaration
public static TagBuilder menu(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

menu(String, String, String, String, String, String, String, String)

Build a menu element.

Declaration
public static TagBuilder menu(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string label = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String type
String label
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

menu_(Html[])

Build a menu element without any attributes.

Declaration
public static Html menu_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

menu_(IEnumerable<Html>)

Build a menu element without any attributes.

Declaration
public static Html menu_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

menuitem(Attr[])

Build a menuitem element.

Declaration
public static TagBuilder menuitem(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

menuitem(IEnumerable<Attr>)

Build a menuitem element.

Declaration
public static TagBuilder menuitem(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

menuitem(String, String, String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean)

Build a menuitem element.

Declaration
public static TagBuilder menuitem(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string label = null, string command = null, string icon = null, string radiogroup = null, bool disabled = false, bool default = false, bool checked = false)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String type
String label
String command
String icon
String radiogroup
Boolean disabled
Boolean default
Boolean checked
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

menuitem_(Html[])

Build a menuitem element without any attributes.

Declaration
public static Html menuitem_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

menuitem_(IEnumerable<Html>)

Build a menuitem element without any attributes.

Declaration
public static Html menuitem_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

meta(Attr[])

Build a meta element.

Declaration
public static Html meta(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

meta(IEnumerable<Attr>)

Build a meta element.

Declaration
public static Html meta(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

meta(String, String, String, String, String, String, String, String)

Build a meta element.

Declaration
public static Html meta(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string charset = null, string target = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String charset
String target
Returns
Type Description
Html

The element

| Improve this Doc View Source

meter(Attr[])

Build a meter element.

Declaration
public static TagBuilder meter(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

meter(IEnumerable<Attr>)

Build a meter element.

Declaration
public static TagBuilder meter(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

meter(String, String, String, String, String, String, String, String, String, String, String, String, String)

Build a meter element.

Declaration
public static TagBuilder meter(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string value = null, string form = null, string max = null, string min = null, string low = null, string high = null, string optimum = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String value
String form
String max
String min
String low
String high
String optimum
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

meter_(Html[])

Build a meter element without any attributes.

Declaration
public static Html meter_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

meter_(IEnumerable<Html>)

Build a meter element without any attributes.

Declaration
public static Html meter_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

nav(Attr[])

Build a nav element.

Declaration
public static TagBuilder nav(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

nav(IEnumerable<Attr>)

Build a nav element.

Declaration
public static TagBuilder nav(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

nav(String, String, String, String, String, String)

Build a nav element.

Declaration
public static TagBuilder nav(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

nav_(Html[])

Build a nav element without any attributes.

Declaration
public static Html nav_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

nav_(IEnumerable<Html>)

Build a nav element without any attributes.

Declaration
public static Html nav_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

noscript(Attr[])

Build a noscript element.

Declaration
public static TagBuilder noscript(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

noscript(IEnumerable<Attr>)

Build a noscript element.

Declaration
public static TagBuilder noscript(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

noscript(String, String, String, String, String, String)

Build a noscript element.

Declaration
public static TagBuilder noscript(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

noscript_(Html[])

Build a noscript element without any attributes.

Declaration
public static Html noscript_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

noscript_(IEnumerable<Html>)

Build a noscript element without any attributes.

Declaration
public static Html noscript_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

object(Attr[])

Build an object element.

Declaration
public static TagBuilder object(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

object(IEnumerable<Attr>)

Build an object element.

Declaration
public static TagBuilder object(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

object(String, String, String, String, String, String, String, String, String, String, String)

Build an object element.

Declaration
public static TagBuilder object(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string data = null, string height = null, string width = null, string name = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String type
String data
String height
String width
String name
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

object_(Html[])

Build an object element without any attributes.

Declaration
public static Html object_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

object_(IEnumerable<Html>)

Build an object element without any attributes.

Declaration
public static Html object_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

ol(Attr[])

Build an ol element.

Declaration
public static TagBuilder ol(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

ol(IEnumerable<Attr>)

Build an ol element.

Declaration
public static TagBuilder ol(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

ol(String, String, String, String, String, String, String, Boolean, String)

Build an ol element.

Declaration
public static TagBuilder ol(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, bool reversed = false, string start = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String type
Boolean reversed
String start
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

ol_(Html[])

Build an ol element without any attributes.

Declaration
public static Html ol_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

ol_(IEnumerable<Html>)

Build an ol element without any attributes.

Declaration
public static Html ol_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

optgroup(Attr[])

Build an optgroup element.

Declaration
public static TagBuilder optgroup(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

optgroup(IEnumerable<Attr>)

Build an optgroup element.

Declaration
public static TagBuilder optgroup(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

optgroup(String, String, String, String, String, String, String, Boolean)

Build an optgroup element.

Declaration
public static TagBuilder optgroup(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string label = null, bool disabled = false)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String label
Boolean disabled
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

optgroup_(Html[])

Build an optgroup element without any attributes.

Declaration
public static Html optgroup_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

optgroup_(IEnumerable<Html>)

Build an optgroup element without any attributes.

Declaration
public static Html optgroup_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

option(Attr[])

Build an option element.

Declaration
public static TagBuilder option(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

option(IEnumerable<Attr>)

Build an option element.

Declaration
public static TagBuilder option(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

option(String, String, String, String, String, String, String, String, Boolean, Boolean)

Build an option element.

Declaration
public static TagBuilder option(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string label = null, string value = null, bool disabled = false, bool selected = false)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String label
String value
Boolean disabled
Boolean selected
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

option_(Html[])

Build an option element without any attributes.

Declaration
public static Html option_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

option_(IEnumerable<Html>)

Build an option element without any attributes.

Declaration
public static Html option_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

output(Attr[])

Build an output element.

Declaration
public static TagBuilder output(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

output(IEnumerable<Attr>)

Build an output element.

Declaration
public static TagBuilder output(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

output(String, String, String, String, String, String, String, String, String)

Build an output element.

Declaration
public static TagBuilder output(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string for = null, string name = null, string form = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String for
String name
String form
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

output_(Html[])

Build an output element without any attributes.

Declaration
public static Html output_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

output_(IEnumerable<Html>)

Build an output element without any attributes.

Declaration
public static Html output_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

p(Attr[])

Build a p element.

Declaration
public static TagBuilder p(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

p(IEnumerable<Attr>)

Build a p element.

Declaration
public static TagBuilder p(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

p(String, String, String, String, String, String)

Build a p element.

Declaration
public static TagBuilder p(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

p_(Html[])

Build a p element without any attributes.

Declaration
public static Html p_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

p_(IEnumerable<Html>)

Build a p element without any attributes.

Declaration
public static Html p_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

param(Attr[])

Build a param element.

Declaration
public static Html param(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

param(IEnumerable<Attr>)

Build a param element.

Declaration
public static Html param(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

param(String, String, String, String, String, String, String, String)

Build a param element.

Declaration
public static Html param(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, string value = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String name
String value
Returns
Type Description
Html

The element

| Improve this Doc View Source

picture(Attr[])

Build a picture element.

Declaration
public static TagBuilder picture(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

picture(IEnumerable<Attr>)

Build a picture element.

Declaration
public static TagBuilder picture(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

picture(String, String, String, String, String, String)

Build a picture element.

Declaration
public static TagBuilder picture(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

picture_(Html[])

Build a picture element without any attributes.

Declaration
public static Html picture_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

picture_(IEnumerable<Html>)

Build a picture element without any attributes.

Declaration
public static Html picture_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

pre(Attr[])

Build a pre element.

Declaration
public static TagBuilder pre(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

pre(IEnumerable<Attr>)

Build a pre element.

Declaration
public static TagBuilder pre(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

pre(String, String, String, String, String, String)

Build a pre element.

Declaration
public static TagBuilder pre(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

pre_(Html[])

Build a pre element without any attributes.

Declaration
public static Html pre_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

pre_(IEnumerable<Html>)

Build a pre element without any attributes.

Declaration
public static Html pre_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

progress(Attr[])

Build a progress element.

Declaration
public static TagBuilder progress(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

progress(IEnumerable<Attr>)

Build a progress element.

Declaration
public static TagBuilder progress(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

progress(String, String, String, String, String, String, String, String)

Build a progress element.

Declaration
public static TagBuilder progress(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string value = null, string max = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String value
String max
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

progress_(Html[])

Build a progress element without any attributes.

Declaration
public static Html progress_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

progress_(IEnumerable<Html>)

Build a progress element without any attributes.

Declaration
public static Html progress_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

q(Attr[])

Build a q element.

Declaration
public static TagBuilder q(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

q(IEnumerable<Attr>)

Build a q element.

Declaration
public static TagBuilder q(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

q(String, String, String, String, String, String, String)

Build a q element.

Declaration
public static TagBuilder q(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string cite = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String cite
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

q_(Html[])

Build a q element without any attributes.

Declaration
public static Html q_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

q_(IEnumerable<Html>)

Build a q element without any attributes.

Declaration
public static Html q_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

Raw(String)

Render a string without HTML-encoding it first.

Declaration
public static Html Raw(string rawHtml)
Parameters
Type Name Description
String rawHtml

The pre-encoded string

Returns
Type Description
Html

An instance of Html.

| Improve this Doc View Source

s(Attr[])

Build an s element.

Declaration
public static TagBuilder s(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

s(IEnumerable<Attr>)

Build an s element.

Declaration
public static TagBuilder s(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

s(String, String, String, String, String, String)

Build an s element.

Declaration
public static TagBuilder s(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

s_(Html[])

Build an s element without any attributes.

Declaration
public static Html s_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

s_(IEnumerable<Html>)

Build an s element without any attributes.

Declaration
public static Html s_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

samp(Attr[])

Build a samp element.

Declaration
public static TagBuilder samp(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

samp(IEnumerable<Attr>)

Build a samp element.

Declaration
public static TagBuilder samp(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

samp(String, String, String, String, String, String)

Build a samp element.

Declaration
public static TagBuilder samp(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

samp_(Html[])

Build a samp element without any attributes.

Declaration
public static Html samp_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

samp_(IEnumerable<Html>)

Build a samp element without any attributes.

Declaration
public static Html samp_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

script(Attr[])

Build a script element.

Declaration
public static TagBuilder script(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

script(IEnumerable<Attr>)

Build a script element.

Declaration
public static TagBuilder script(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

script(String, String, String, String, String, String, String, String, String, Boolean)

Build a script element.

Declaration
public static TagBuilder script(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string src = null, string crossorigin = null, bool async = false)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String type
String src
String crossorigin
Boolean async
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

script_(Html[])

Build a script element without any attributes.

Declaration
public static Html script_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

script_(IEnumerable<Html>)

Build a script element without any attributes.

Declaration
public static Html script_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

section(Attr[])

Build a section element.

Declaration
public static TagBuilder section(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

section(IEnumerable<Attr>)

Build a section element.

Declaration
public static TagBuilder section(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

section(String, String, String, String, String, String)

Build a section element.

Declaration
public static TagBuilder section(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

section_(Html[])

Build a section element without any attributes.

Declaration
public static Html section_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

section_(IEnumerable<Html>)

Build a section element without any attributes.

Declaration
public static Html section_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

select(Attr[])

Build a select element.

Declaration
public static TagBuilder select(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

select(IEnumerable<Attr>)

Build a select element.

Declaration
public static TagBuilder select(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

select(String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, String)

Build a select element.

Declaration
public static TagBuilder select(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, string multiple = null, string size = null, bool autofocus = false, bool disabled = false, bool required = false, string form = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String name
String multiple
String size
Boolean autofocus
Boolean disabled
Boolean required
String form
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

select_(Html[])

Build a select element without any attributes.

Declaration
public static Html select_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

select_(IEnumerable<Html>)

Build a select element without any attributes.

Declaration
public static Html select_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

SelfClosingTag(String, Attr[])

Create a tag which does not take children.

Declaration
public static Html SelfClosingTag(string name, params Attr[] attrs)
Parameters
Type Name Description
String name
Attr[] attrs
Returns
Type Description
Html
| Improve this Doc View Source

SelfClosingTag(String, IEnumerable<Attr>)

Create a tag which does not take children.

Declaration
public static Html SelfClosingTag(string name, IEnumerable<Attr> attrs)
Parameters
Type Name Description
String name
IEnumerable<Attr> attrs
Returns
Type Description
Html
| Improve this Doc View Source

small(Attr[])

Build a small element.

Declaration
public static TagBuilder small(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

small(IEnumerable<Attr>)

Build a small element.

Declaration
public static TagBuilder small(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

small(String, String, String, String, String, String)

Build a small element.

Declaration
public static TagBuilder small(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

small_(Html[])

Build a small element without any attributes.

Declaration
public static Html small_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

small_(IEnumerable<Html>)

Build a small element without any attributes.

Declaration
public static Html small_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

source(Attr[])

Build a source element.

Declaration
public static Html source(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

source(IEnumerable<Attr>)

Build a source element.

Declaration
public static Html source(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

source(String, String, String, String, String, String, String, String)

Build a source element.

Declaration
public static Html source(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string src = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String type
String src
Returns
Type Description
Html

The element

| Improve this Doc View Source

span(Attr[])

Build a span element.

Declaration
public static TagBuilder span(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

span(IEnumerable<Attr>)

Build a span element.

Declaration
public static TagBuilder span(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

span(String, String, String, String, String, String)

Build a span element.

Declaration
public static TagBuilder span(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

span_(Html[])

Build a span element without any attributes.

Declaration
public static Html span_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

span_(IEnumerable<Html>)

Build a span element without any attributes.

Declaration
public static Html span_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

strong(Attr[])

Build a strong element.

Declaration
public static TagBuilder strong(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

strong(IEnumerable<Attr>)

Build a strong element.

Declaration
public static TagBuilder strong(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

strong(String, String, String, String, String, String)

Build a strong element.

Declaration
public static TagBuilder strong(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

strong_(Html[])

Build a strong element without any attributes.

Declaration
public static Html strong_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

strong_(IEnumerable<Html>)

Build a strong element without any attributes.

Declaration
public static Html strong_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

style(Attr[])

Build a style element.

Declaration
public static TagBuilder style(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

style(IEnumerable<Attr>)

Build a style element.

Declaration
public static TagBuilder style(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

style(String, String, String, String, String, String, String, String)

Build a style element.

Declaration
public static TagBuilder style(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, string media = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String type
String media
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

style_(Html[])

Build a style element without any attributes.

Declaration
public static Html style_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

style_(IEnumerable<Html>)

Build a style element without any attributes.

Declaration
public static Html style_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

sub(Attr[])

Build a sub element.

Declaration
public static TagBuilder sub(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

sub(IEnumerable<Attr>)

Build a sub element.

Declaration
public static TagBuilder sub(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

sub(String, String, String, String, String, String)

Build a sub element.

Declaration
public static TagBuilder sub(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

sub_(Html[])

Build a sub element without any attributes.

Declaration
public static Html sub_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

sub_(IEnumerable<Html>)

Build a sub element without any attributes.

Declaration
public static Html sub_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

summary(Attr[])

Build a summary element.

Declaration
public static TagBuilder summary(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

summary(IEnumerable<Attr>)

Build a summary element.

Declaration
public static TagBuilder summary(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

summary(String, String, String, String, String, String)

Build a summary element.

Declaration
public static TagBuilder summary(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

summary_(Html[])

Build a summary element without any attributes.

Declaration
public static Html summary_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

summary_(IEnumerable<Html>)

Build a summary element without any attributes.

Declaration
public static Html summary_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

sup(Attr[])

Build a sup element.

Declaration
public static TagBuilder sup(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

sup(IEnumerable<Attr>)

Build a sup element.

Declaration
public static TagBuilder sup(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

sup(String, String, String, String, String, String)

Build a sup element.

Declaration
public static TagBuilder sup(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

sup_(Html[])

Build a sup element without any attributes.

Declaration
public static Html sup_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

sup_(IEnumerable<Html>)

Build a sup element without any attributes.

Declaration
public static Html sup_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

table(Attr[])

Build a table element.

Declaration
public static TagBuilder table(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

table(IEnumerable<Attr>)

Build a table element.

Declaration
public static TagBuilder table(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

table(String, String, String, String, String, String)

Build a table element.

Declaration
public static TagBuilder table(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

table_(Html[])

Build a table element without any attributes.

Declaration
public static Html table_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

table_(IEnumerable<Html>)

Build a table element without any attributes.

Declaration
public static Html table_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

Tag(String, Attr[])

Create a tag which takes children.

Declaration
public static TagBuilder Tag(string name, params Attr[] attrs)
Parameters
Type Name Description
String name
Attr[] attrs
Returns
Type Description
TagBuilder
| Improve this Doc View Source

Tag(String, IEnumerable<Attr>)

Create a tag which takes children.

Declaration
public static TagBuilder Tag(string name, IEnumerable<Attr> attrs)
Parameters
Type Name Description
String name
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder
| Improve this Doc View Source

Tag_(String, Html[])

Create a tag without any attributes.

Declaration
public static Html Tag_(string name, params Html[] children)
Parameters
Type Name Description
String name
Html[] children
Returns
Type Description
Html
| Improve this Doc View Source

Tag_(String, IEnumerable<Html>)

Create a tag without any attributes.

Declaration
public static Html Tag_(string name, IEnumerable<Html> children)
Parameters
Type Name Description
String name
IEnumerable<Html> children
Returns
Type Description
Html
| Improve this Doc View Source

Tag_(String, ImmutableArray<Html>)

Create a tag without any attributes.

Declaration
public static Html Tag_(string name, ImmutableArray<Html> children)
Parameters
Type Name Description
String name
ImmutableArray<Html> children
Returns
Type Description
Html
| Improve this Doc View Source

Tag_(String, ImmutableList<Html>)

Create a tag without any attributes.

Declaration
public static Html Tag_(string name, ImmutableList<Html> children)
Parameters
Type Name Description
String name
ImmutableList<Html> children
Returns
Type Description
Html
| Improve this Doc View Source

Tag_(String, List<Html>)

Create a tag without any attributes.

Declaration
public static Html Tag_(string name, List<Html> children)
Parameters
Type Name Description
String name
List<Html> children
Returns
Type Description
Html
| Improve this Doc View Source

tbody(Attr[])

Build a tbody element.

Declaration
public static TagBuilder tbody(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

tbody(IEnumerable<Attr>)

Build a tbody element.

Declaration
public static TagBuilder tbody(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

tbody(String, String, String, String, String, String)

Build a tbody element.

Declaration
public static TagBuilder tbody(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

tbody_(Html[])

Build a tbody element without any attributes.

Declaration
public static Html tbody_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

tbody_(IEnumerable<Html>)

Build a tbody element without any attributes.

Declaration
public static Html tbody_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

td(Attr[])

Build a td element.

Declaration
public static TagBuilder td(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

td(IEnumerable<Attr>)

Build a td element.

Declaration
public static TagBuilder td(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

td(String, String, String, String, String, String, String, String, String)

Build a td element.

Declaration
public static TagBuilder td(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string colspan = null, string rowspan = null, string headers = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String colspan
String rowspan
String headers
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

td_(Html[])

Build a td element without any attributes.

Declaration
public static Html td_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

td_(IEnumerable<Html>)

Build a td element without any attributes.

Declaration
public static Html td_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

Text(String)

Render HTML-encoded text.

Declaration
public static Html Text(string text)
Parameters
Type Name Description
String text

The text to HTML-encode

Returns
Type Description
Html

An instance of Html.

| Improve this Doc View Source

textarea(Attr[])

Build a textarea element.

Declaration
public static TagBuilder textarea(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

textarea(IEnumerable<Attr>)

Build a textarea element.

Declaration
public static TagBuilder textarea(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

textarea(String, String, String, String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, Boolean, String, String, String, String)

Build a textarea element.

Declaration
public static TagBuilder textarea(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string name = null, string placeholder = null, string autocomplete = null, string cols = null, string rows = null, string wrap = null, bool autofocus = false, bool disabled = false, bool readonly = false, bool required = false, string src = null, string maxlength = null, string minlength = null, string form = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String name
String placeholder
String autocomplete
String cols
String rows
String wrap
Boolean autofocus
Boolean disabled
Boolean readonly
Boolean required
String src
String maxlength
String minlength
String form
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

textarea_(Html[])

Build a textarea element without any attributes.

Declaration
public static Html textarea_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

textarea_(IEnumerable<Html>)

Build a textarea element without any attributes.

Declaration
public static Html textarea_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

tfoot(Attr[])

Build a tfoot element.

Declaration
public static TagBuilder tfoot(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

tfoot(IEnumerable<Attr>)

Build a tfoot element.

Declaration
public static TagBuilder tfoot(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

tfoot(String, String, String, String, String, String)

Build a tfoot element.

Declaration
public static TagBuilder tfoot(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

tfoot_(Html[])

Build a tfoot element without any attributes.

Declaration
public static Html tfoot_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

tfoot_(IEnumerable<Html>)

Build a tfoot element without any attributes.

Declaration
public static Html tfoot_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

th(Attr[])

Build a th element.

Declaration
public static TagBuilder th(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

th(IEnumerable<Attr>)

Build a th element.

Declaration
public static TagBuilder th(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

th(String, String, String, String, String, String, String, String, String, String)

Build a th element.

Declaration
public static TagBuilder th(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string colspan = null, string rowspan = null, string headers = null, string scope = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String colspan
String rowspan
String headers
String scope
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

th_(Html[])

Build a th element without any attributes.

Declaration
public static Html th_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

th_(IEnumerable<Html>)

Build a th element without any attributes.

Declaration
public static Html th_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

thead(Attr[])

Build a thead element.

Declaration
public static TagBuilder thead(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

thead(IEnumerable<Attr>)

Build a thead element.

Declaration
public static TagBuilder thead(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

thead(String, String, String, String, String, String)

Build a thead element.

Declaration
public static TagBuilder thead(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

thead_(Html[])

Build a thead element without any attributes.

Declaration
public static Html thead_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

thead_(IEnumerable<Html>)

Build a thead element without any attributes.

Declaration
public static Html thead_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

time(Attr[])

Build a time element.

Declaration
public static TagBuilder time(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

time(IEnumerable<Attr>)

Build a time element.

Declaration
public static TagBuilder time(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

time(String, String, String, String, String, String, String)

Build a time element.

Declaration
public static TagBuilder time(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string datetime = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String datetime
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

time_(Html[])

Build a time element without any attributes.

Declaration
public static Html time_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

time_(IEnumerable<Html>)

Build a time element without any attributes.

Declaration
public static Html time_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

title(Attr[])

Build a title element.

Declaration
public static TagBuilder title(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

title(IEnumerable<Attr>)

Build a title element.

Declaration
public static TagBuilder title(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

title(String, String, String, String, String, String)

Build a title element.

Declaration
public static TagBuilder title(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

title_(Html[])

Build a title element without any attributes.

Declaration
public static Html title_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

title_(IEnumerable<Html>)

Build a title element without any attributes.

Declaration
public static Html title_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

ToString()

Write the HTML to a

Declaration
public override string ToString()
Returns
Type Description
String
| Improve this Doc View Source

tr(Attr[])

Build a tr element.

Declaration
public static TagBuilder tr(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

tr(IEnumerable<Attr>)

Build a tr element.

Declaration
public static TagBuilder tr(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

tr(String, String, String, String, String, String)

Build a tr element.

Declaration
public static TagBuilder tr(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

tr_(Html[])

Build a tr element without any attributes.

Declaration
public static Html tr_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

tr_(IEnumerable<Html>)

Build a tr element without any attributes.

Declaration
public static Html tr_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

track(Attr[])

Build a track element.

Declaration
public static Html track(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

track(IEnumerable<Attr>)

Build a track element.

Declaration
public static Html track(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

track(String, String, String, String, String, String, String, String, String, Boolean)

Build a track element.

Declaration
public static Html track(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string src = null, string label = null, string kind = null, bool default = false)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String src
String label
String kind
Boolean default
Returns
Type Description
Html

The element

| Improve this Doc View Source

u(Attr[])

Build an u element.

Declaration
public static TagBuilder u(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

u(IEnumerable<Attr>)

Build an u element.

Declaration
public static TagBuilder u(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

u(String, String, String, String, String, String)

Build an u element.

Declaration
public static TagBuilder u(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

u_(Html[])

Build an u element without any attributes.

Declaration
public static Html u_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

u_(IEnumerable<Html>)

Build an u element without any attributes.

Declaration
public static Html u_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

ul(Attr[])

Build an ul element.

Declaration
public static TagBuilder ul(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

ul(IEnumerable<Attr>)

Build an ul element.

Declaration
public static TagBuilder ul(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

ul(String, String, String, String, String, String, String, Boolean, String)

Build an ul element.

Declaration
public static TagBuilder ul(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string type = null, bool reversed = false, string start = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String type
Boolean reversed
String start
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

ul_(Html[])

Build an ul element without any attributes.

Declaration
public static Html ul_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

ul_(IEnumerable<Html>)

Build an ul element without any attributes.

Declaration
public static Html ul_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

video(Attr[])

Build a video element.

Declaration
public static TagBuilder video(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

video(IEnumerable<Attr>)

Build a video element.

Declaration
public static TagBuilder video(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

video(String, String, String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, Boolean, String)

Build a video element.

Declaration
public static TagBuilder video(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null, string src = null, string height = null, string width = null, string poster = null, string preload = null, bool autoplay = false, bool loop = false, bool muted = false, bool controls = false, string crossorigin = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
String src
String height
String width
String poster
String preload
Boolean autoplay
Boolean loop
Boolean muted
Boolean controls
String crossorigin
Returns
Type Description
TagBuilder

A TagBuilder waiting for the element's children

| Improve this Doc View Source

video_(Html[])

Build a video element without any attributes.

Declaration
public static Html video_(params Html[] children)
Parameters
Type Name Description
Html[] children
Returns
Type Description
Html

The element

| Improve this Doc View Source

video_(IEnumerable<Html>)

Build a video element without any attributes.

Declaration
public static Html video_(IEnumerable<Html> children)
Parameters
Type Name Description
IEnumerable<Html> children
Returns
Type Description
Html

The element

| Improve this Doc View Source

wbr(Attr[])

Build a wbr element.

Declaration
public static Html wbr(params Attr[] attrs)
Parameters
Type Name Description
Attr[] attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

wbr(IEnumerable<Attr>)

Build a wbr element.

Declaration
public static Html wbr(IEnumerable<Attr> attrs)
Parameters
Type Name Description
IEnumerable<Attr> attrs
Returns
Type Description
Html

The element

| Improve this Doc View Source

wbr(String, String, String, String, String, String)

Build a wbr element.

Declaration
public static Html wbr(string id = null, string class = null, string style = null, string title = null, string tabindex = null, string contenteditable = null)
Parameters
Type Name Description
String id
String class
String style
String title
String tabindex
String contenteditable
Returns
Type Description
Html

The element

| Improve this Doc View Source

Write(TextWriter)

Write the HTML to a

Declaration
public void Write(TextWriter writer)
Parameters
Type Name Description
TextWriter writer

The writer

| Improve this Doc View Source

Write(TextWriter, HtmlEncoder)

Write the HTML to a , using an to encode input text

Declaration
public void Write(TextWriter writer, HtmlEncoder htmlEncoder)
Parameters
Type Name Description
TextWriter writer

The writer

HtmlEncoder htmlEncoder

The HTML encoder

| Improve this Doc View Source

WriteAsync(TextWriter)

Write the HTML to a

Declaration
public Task WriteAsync(TextWriter writer)
Parameters
Type Name Description
TextWriter writer

The writer

Returns
Type Description
Task
| Improve this Doc View Source

WriteAsync(TextWriter, HtmlEncoder)

Write the HTML to a , using an to encode input text

Declaration
public Task WriteAsync(TextWriter writer, HtmlEncoder htmlEncoder)
Parameters
Type Name Description
TextWriter writer

The writer

HtmlEncoder htmlEncoder

The HTML encoder

Returns
Type Description
Task

Operators

| Improve this Doc View Source

Implicit(Html[] to Html)

Put some siblings next to each other.

Declaration
public static implicit operator Html(Html[] siblings)
Parameters
Type Name Description
Html[] siblings
Returns
Type Description
Html
| Improve this Doc View Source

Implicit(TagBuilder to Html)

Create a tag with no children.

Declaration
public static implicit operator Html(TagBuilder tagBuilder)
Parameters
Type Name Description
TagBuilder tagBuilder
Returns
Type Description
Html
| Improve this Doc View Source

Implicit(ImmutableArray<Html> to Html)

Put some siblings next to each other.

Declaration
public static implicit operator Html(ImmutableArray<Html> siblings)
Parameters
Type Name Description
ImmutableArray<Html> siblings
Returns
Type Description
Html
| Improve this Doc View Source

Implicit(ImmutableList<Html> to Html)

Put some siblings next to each other.

Declaration
public static implicit operator Html(ImmutableList<Html> siblings)
Parameters
Type Name Description
ImmutableList<Html> siblings
Returns
Type Description
Html
| Improve this Doc View Source

Implicit(List<Html> to Html)

Put some siblings next to each other.

Declaration
public static implicit operator Html(List<Html> siblings)
Parameters
Type Name Description
List<Html> siblings
Returns
Type Description
Html
| Improve this Doc View Source

Implicit(String to Html)

Render HTML-encoded text.

Declaration
public static implicit operator Html(string text)
Parameters
Type Name Description
String text

The text to HTML-encode

Returns
Type Description
Html

An instance of Html.

Extension Methods

EightyActionResultFactory.ToActionResult(Html, Nullable<HttpStatusCode>, Boolean)
  • Improve this Doc
  • View Source
In This Article
  • Properties
    • CanWriteAsync
    • Empty
  • Methods
    • _(Html[])
    • _(IEnumerable<Html>)
    • _(ImmutableArray<Html>)
    • _(ImmutableList<Html>)
    • _(List<Html>)
    • a(Attr[])
    • a(IEnumerable<Attr>)
    • a(String, String, String, String, String, String, String, String, String, String, String)
    • a_(Html[])
    • a_(IEnumerable<Html>)
    • abbr(Attr[])
    • abbr(IEnumerable<Attr>)
    • abbr(String, String, String, String, String, String)
    • abbr_(Html[])
    • abbr_(IEnumerable<Html>)
    • address(Attr[])
    • address(IEnumerable<Attr>)
    • address(String, String, String, String, String, String)
    • address_(Html[])
    • address_(IEnumerable<Html>)
    • article(Attr[])
    • article(IEnumerable<Attr>)
    • article(String, String, String, String, String, String)
    • article_(Html[])
    • article_(IEnumerable<Html>)
    • aside(Attr[])
    • aside(IEnumerable<Attr>)
    • aside(String, String, String, String, String, String)
    • aside_(Html[])
    • aside_(IEnumerable<Html>)
    • audio(Attr[])
    • audio(IEnumerable<Attr>)
    • audio(String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, Boolean)
    • audio_(Html[])
    • audio_(IEnumerable<Html>)
    • b(Attr[])
    • b(IEnumerable<Attr>)
    • b(String, String, String, String, String, String)
    • b_(Html[])
    • b_(IEnumerable<Html>)
    • base(Attr[])
    • base(IEnumerable<Attr>)
    • base(String, String, String, String, String, String, String, String)
    • bdi(Attr[])
    • bdi(IEnumerable<Attr>)
    • bdi(String, String, String, String, String, String, String)
    • bdi_(Html[])
    • bdi_(IEnumerable<Html>)
    • bdo(Attr[])
    • bdo(IEnumerable<Attr>)
    • bdo(String, String, String, String, String, String, String)
    • bdo_(Html[])
    • bdo_(IEnumerable<Html>)
    • blockquote(Attr[])
    • blockquote(IEnumerable<Attr>)
    • blockquote(String, String, String, String, String, String)
    • blockquote_(Html[])
    • blockquote_(IEnumerable<Html>)
    • body(Attr[])
    • body(IEnumerable<Attr>)
    • body(String, String, String, String, String, String)
    • body_(Html[])
    • body_(IEnumerable<Html>)
    • br(Attr[])
    • br(IEnumerable<Attr>)
    • br(String, String, String, String, String, String)
    • Builder(Func<HtmlBuilder>)
    • button(Attr[])
    • button(IEnumerable<Attr>)
    • button(String, String, String, String, String, String, String, String, String, Boolean, Boolean, String, String, String, String, String, String, String, String, Boolean)
    • button_(Html[])
    • button_(IEnumerable<Html>)
    • canvas(Attr[])
    • canvas(IEnumerable<Attr>)
    • canvas(String, String, String, String, String, String, String, String)
    • canvas_(Html[])
    • canvas_(IEnumerable<Html>)
    • caption(Attr[])
    • caption(IEnumerable<Attr>)
    • caption(String, String, String, String, String, String)
    • caption_(Html[])
    • caption_(IEnumerable<Html>)
    • cite(Attr[])
    • cite(IEnumerable<Attr>)
    • cite(String, String, String, String, String, String)
    • cite_(Html[])
    • cite_(IEnumerable<Html>)
    • code(Attr[])
    • code(IEnumerable<Attr>)
    • code(String, String, String, String, String, String)
    • code_(Html[])
    • code_(IEnumerable<Html>)
    • col(Attr[])
    • col(IEnumerable<Attr>)
    • col(String, String, String, String, String, String, String)
    • col_(Html[])
    • col_(IEnumerable<Html>)
    • colgroup(Attr[])
    • colgroup(IEnumerable<Attr>)
    • colgroup(String, String, String, String, String, String, String)
    • colgroup_(Html[])
    • colgroup_(IEnumerable<Html>)
    • data(Attr[])
    • data(IEnumerable<Attr>)
    • data(String, String, String, String, String, String, String)
    • data_(Html[])
    • data_(IEnumerable<Html>)
    • datalist(Attr[])
    • datalist(IEnumerable<Attr>)
    • datalist(String, String, String, String, String, String)
    • datalist_(Html[])
    • datalist_(IEnumerable<Html>)
    • dd(Attr[])
    • dd(IEnumerable<Attr>)
    • dd(String, String, String, String, String, String)
    • dd_(Html[])
    • dd_(IEnumerable<Html>)
    • details(Attr[])
    • details(IEnumerable<Attr>)
    • details(String, String, String, String, String, String, Boolean)
    • details_(Html[])
    • details_(IEnumerable<Html>)
    • dfn(Attr[])
    • dfn(IEnumerable<Attr>)
    • dfn(String, String, String, String, String, String)
    • dfn_(Html[])
    • dfn_(IEnumerable<Html>)
    • dialog(Attr[])
    • dialog(IEnumerable<Attr>)
    • dialog(String, String, String, String, String, String, Boolean)
    • dialog_(Html[])
    • dialog_(IEnumerable<Html>)
    • div(Attr[])
    • div(IEnumerable<Attr>)
    • div(String, String, String, String, String, String)
    • div_(Html[])
    • div_(IEnumerable<Html>)
    • dl(Attr[])
    • dl(IEnumerable<Attr>)
    • dl(String, String, String, String, String, String)
    • dl_(Html[])
    • dl_(IEnumerable<Html>)
    • doctype()
    • doctypeHtml_(Html[])
    • dt(Attr[])
    • dt(IEnumerable<Attr>)
    • dt(String, String, String, String, String, String)
    • dt_(Html[])
    • dt_(IEnumerable<Html>)
    • em(Attr[])
    • em(IEnumerable<Attr>)
    • em(String, String, String, String, String, String)
    • em_(Html[])
    • em_(IEnumerable<Html>)
    • embed(Attr[])
    • embed(IEnumerable<Attr>)
    • embed(String, String, String, String, String, String, String, String, String, String)
    • fieldset(Attr[])
    • fieldset(IEnumerable<Attr>)
    • fieldset(String, String, String, String, String, String, String, Boolean, String)
    • fieldset_(Html[])
    • fieldset_(IEnumerable<Html>)
    • figcaption(Attr[])
    • figcaption(IEnumerable<Attr>)
    • figcaption(String, String, String, String, String, String)
    • figcaption_(Html[])
    • figcaption_(IEnumerable<Html>)
    • figure(Attr[])
    • figure(IEnumerable<Attr>)
    • figure(String, String, String, String, String, String)
    • figure_(Html[])
    • figure_(IEnumerable<Html>)
    • footer(Attr[])
    • footer(IEnumerable<Attr>)
    • footer(String, String, String, String, String, String)
    • footer_(Html[])
    • footer_(IEnumerable<Html>)
    • form(Attr[])
    • form(IEnumerable<Attr>)
    • form(String, String, String, String, String, String, String, String, String, String, String, String, Boolean)
    • form_(Html[])
    • form_(IEnumerable<Html>)
    • h1(Attr[])
    • h1(IEnumerable<Attr>)
    • h1(String, String, String, String, String, String)
    • h1_(Html[])
    • h1_(IEnumerable<Html>)
    • h2(Attr[])
    • h2(IEnumerable<Attr>)
    • h2(String, String, String, String, String, String)
    • h2_(Html[])
    • h2_(IEnumerable<Html>)
    • h3(Attr[])
    • h3(IEnumerable<Attr>)
    • h3(String, String, String, String, String, String)
    • h3_(Html[])
    • h3_(IEnumerable<Html>)
    • h4(Attr[])
    • h4(IEnumerable<Attr>)
    • h4(String, String, String, String, String, String)
    • h4_(Html[])
    • h4_(IEnumerable<Html>)
    • h5(Attr[])
    • h5(IEnumerable<Attr>)
    • h5(String, String, String, String, String, String)
    • h5_(Html[])
    • h5_(IEnumerable<Html>)
    • h6(Attr[])
    • h6(IEnumerable<Attr>)
    • h6(String, String, String, String, String, String)
    • h6_(Html[])
    • h6_(IEnumerable<Html>)
    • head(Attr[])
    • head(IEnumerable<Attr>)
    • head(String, String, String, String, String, String)
    • head_(Html[])
    • head_(IEnumerable<Html>)
    • header(Attr[])
    • header(IEnumerable<Attr>)
    • header(String, String, String, String, String, String)
    • header_(Html[])
    • header_(IEnumerable<Html>)
    • hgroup(Attr[])
    • hgroup(IEnumerable<Attr>)
    • hgroup(String, String, String, String, String, String)
    • hgroup_(Html[])
    • hgroup_(IEnumerable<Html>)
    • hr(Attr[])
    • hr(IEnumerable<Attr>)
    • hr(String, String, String, String, String, String)
    • html(Attr[])
    • html(IEnumerable<Attr>)
    • html(String, String, String, String, String, String, String)
    • html_(Html[])
    • html_(IEnumerable<Html>)
    • i(Attr[])
    • i(IEnumerable<Attr>)
    • i(String, String, String, String, String, String)
    • i_(Html[])
    • i_(IEnumerable<Html>)
    • img(Attr[])
    • img(IEnumerable<Attr>)
    • img(String, String, String, String, String, String, String, String, String, String, String, String, String)
    • input(Attr[])
    • input(IEnumerable<Attr>)
    • input(String, String, String, String, String, String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, Boolean, Boolean, String, String, String, String, String, String, String, String, String, String, String, String, String, String, Boolean)
    • input_(Html[])
    • input_(IEnumerable<Html>)
    • kbd(Attr[])
    • kbd(IEnumerable<Attr>)
    • kbd(String, String, String, String, String, String)
    • kbd_(Html[])
    • kbd_(IEnumerable<Html>)
    • label(Attr[])
    • label(IEnumerable<Attr>)
    • label(String, String, String, String, String, String, String)
    • label_(Html[])
    • label_(IEnumerable<Html>)
    • legend(Attr[])
    • legend(IEnumerable<Attr>)
    • legend(String, String, String, String, String, String)
    • legend_(Html[])
    • legend_(IEnumerable<Html>)
    • li(Attr[])
    • li(IEnumerable<Attr>)
    • li(String, String, String, String, String, String, String)
    • li_(Html[])
    • li_(IEnumerable<Html>)
    • link(Attr[])
    • link(IEnumerable<Attr>)
    • link(String, String, String, String, String, String, String, String, String, String, String, String)
    • main(Attr[])
    • main(IEnumerable<Attr>)
    • main(String, String, String, String, String, String)
    • main_(Html[])
    • main_(IEnumerable<Html>)
    • mark(Attr[])
    • mark(IEnumerable<Attr>)
    • mark(String, String, String, String, String, String)
    • mark_(Html[])
    • mark_(IEnumerable<Html>)
    • menu(Attr[])
    • menu(IEnumerable<Attr>)
    • menu(String, String, String, String, String, String, String, String)
    • menu_(Html[])
    • menu_(IEnumerable<Html>)
    • menuitem(Attr[])
    • menuitem(IEnumerable<Attr>)
    • menuitem(String, String, String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean)
    • menuitem_(Html[])
    • menuitem_(IEnumerable<Html>)
    • meta(Attr[])
    • meta(IEnumerable<Attr>)
    • meta(String, String, String, String, String, String, String, String)
    • meter(Attr[])
    • meter(IEnumerable<Attr>)
    • meter(String, String, String, String, String, String, String, String, String, String, String, String, String)
    • meter_(Html[])
    • meter_(IEnumerable<Html>)
    • nav(Attr[])
    • nav(IEnumerable<Attr>)
    • nav(String, String, String, String, String, String)
    • nav_(Html[])
    • nav_(IEnumerable<Html>)
    • noscript(Attr[])
    • noscript(IEnumerable<Attr>)
    • noscript(String, String, String, String, String, String)
    • noscript_(Html[])
    • noscript_(IEnumerable<Html>)
    • object(Attr[])
    • object(IEnumerable<Attr>)
    • object(String, String, String, String, String, String, String, String, String, String, String)
    • object_(Html[])
    • object_(IEnumerable<Html>)
    • ol(Attr[])
    • ol(IEnumerable<Attr>)
    • ol(String, String, String, String, String, String, String, Boolean, String)
    • ol_(Html[])
    • ol_(IEnumerable<Html>)
    • optgroup(Attr[])
    • optgroup(IEnumerable<Attr>)
    • optgroup(String, String, String, String, String, String, String, Boolean)
    • optgroup_(Html[])
    • optgroup_(IEnumerable<Html>)
    • option(Attr[])
    • option(IEnumerable<Attr>)
    • option(String, String, String, String, String, String, String, String, Boolean, Boolean)
    • option_(Html[])
    • option_(IEnumerable<Html>)
    • output(Attr[])
    • output(IEnumerable<Attr>)
    • output(String, String, String, String, String, String, String, String, String)
    • output_(Html[])
    • output_(IEnumerable<Html>)
    • p(Attr[])
    • p(IEnumerable<Attr>)
    • p(String, String, String, String, String, String)
    • p_(Html[])
    • p_(IEnumerable<Html>)
    • param(Attr[])
    • param(IEnumerable<Attr>)
    • param(String, String, String, String, String, String, String, String)
    • picture(Attr[])
    • picture(IEnumerable<Attr>)
    • picture(String, String, String, String, String, String)
    • picture_(Html[])
    • picture_(IEnumerable<Html>)
    • pre(Attr[])
    • pre(IEnumerable<Attr>)
    • pre(String, String, String, String, String, String)
    • pre_(Html[])
    • pre_(IEnumerable<Html>)
    • progress(Attr[])
    • progress(IEnumerable<Attr>)
    • progress(String, String, String, String, String, String, String, String)
    • progress_(Html[])
    • progress_(IEnumerable<Html>)
    • q(Attr[])
    • q(IEnumerable<Attr>)
    • q(String, String, String, String, String, String, String)
    • q_(Html[])
    • q_(IEnumerable<Html>)
    • Raw(String)
    • s(Attr[])
    • s(IEnumerable<Attr>)
    • s(String, String, String, String, String, String)
    • s_(Html[])
    • s_(IEnumerable<Html>)
    • samp(Attr[])
    • samp(IEnumerable<Attr>)
    • samp(String, String, String, String, String, String)
    • samp_(Html[])
    • samp_(IEnumerable<Html>)
    • script(Attr[])
    • script(IEnumerable<Attr>)
    • script(String, String, String, String, String, String, String, String, String, Boolean)
    • script_(Html[])
    • script_(IEnumerable<Html>)
    • section(Attr[])
    • section(IEnumerable<Attr>)
    • section(String, String, String, String, String, String)
    • section_(Html[])
    • section_(IEnumerable<Html>)
    • select(Attr[])
    • select(IEnumerable<Attr>)
    • select(String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, String)
    • select_(Html[])
    • select_(IEnumerable<Html>)
    • SelfClosingTag(String, Attr[])
    • SelfClosingTag(String, IEnumerable<Attr>)
    • small(Attr[])
    • small(IEnumerable<Attr>)
    • small(String, String, String, String, String, String)
    • small_(Html[])
    • small_(IEnumerable<Html>)
    • source(Attr[])
    • source(IEnumerable<Attr>)
    • source(String, String, String, String, String, String, String, String)
    • span(Attr[])
    • span(IEnumerable<Attr>)
    • span(String, String, String, String, String, String)
    • span_(Html[])
    • span_(IEnumerable<Html>)
    • strong(Attr[])
    • strong(IEnumerable<Attr>)
    • strong(String, String, String, String, String, String)
    • strong_(Html[])
    • strong_(IEnumerable<Html>)
    • style(Attr[])
    • style(IEnumerable<Attr>)
    • style(String, String, String, String, String, String, String, String)
    • style_(Html[])
    • style_(IEnumerable<Html>)
    • sub(Attr[])
    • sub(IEnumerable<Attr>)
    • sub(String, String, String, String, String, String)
    • sub_(Html[])
    • sub_(IEnumerable<Html>)
    • summary(Attr[])
    • summary(IEnumerable<Attr>)
    • summary(String, String, String, String, String, String)
    • summary_(Html[])
    • summary_(IEnumerable<Html>)
    • sup(Attr[])
    • sup(IEnumerable<Attr>)
    • sup(String, String, String, String, String, String)
    • sup_(Html[])
    • sup_(IEnumerable<Html>)
    • table(Attr[])
    • table(IEnumerable<Attr>)
    • table(String, String, String, String, String, String)
    • table_(Html[])
    • table_(IEnumerable<Html>)
    • Tag(String, Attr[])
    • Tag(String, IEnumerable<Attr>)
    • Tag_(String, Html[])
    • Tag_(String, IEnumerable<Html>)
    • Tag_(String, ImmutableArray<Html>)
    • Tag_(String, ImmutableList<Html>)
    • Tag_(String, List<Html>)
    • tbody(Attr[])
    • tbody(IEnumerable<Attr>)
    • tbody(String, String, String, String, String, String)
    • tbody_(Html[])
    • tbody_(IEnumerable<Html>)
    • td(Attr[])
    • td(IEnumerable<Attr>)
    • td(String, String, String, String, String, String, String, String, String)
    • td_(Html[])
    • td_(IEnumerable<Html>)
    • Text(String)
    • textarea(Attr[])
    • textarea(IEnumerable<Attr>)
    • textarea(String, String, String, String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, Boolean, String, String, String, String)
    • textarea_(Html[])
    • textarea_(IEnumerable<Html>)
    • tfoot(Attr[])
    • tfoot(IEnumerable<Attr>)
    • tfoot(String, String, String, String, String, String)
    • tfoot_(Html[])
    • tfoot_(IEnumerable<Html>)
    • th(Attr[])
    • th(IEnumerable<Attr>)
    • th(String, String, String, String, String, String, String, String, String, String)
    • th_(Html[])
    • th_(IEnumerable<Html>)
    • thead(Attr[])
    • thead(IEnumerable<Attr>)
    • thead(String, String, String, String, String, String)
    • thead_(Html[])
    • thead_(IEnumerable<Html>)
    • time(Attr[])
    • time(IEnumerable<Attr>)
    • time(String, String, String, String, String, String, String)
    • time_(Html[])
    • time_(IEnumerable<Html>)
    • title(Attr[])
    • title(IEnumerable<Attr>)
    • title(String, String, String, String, String, String)
    • title_(Html[])
    • title_(IEnumerable<Html>)
    • ToString()
    • tr(Attr[])
    • tr(IEnumerable<Attr>)
    • tr(String, String, String, String, String, String)
    • tr_(Html[])
    • tr_(IEnumerable<Html>)
    • track(Attr[])
    • track(IEnumerable<Attr>)
    • track(String, String, String, String, String, String, String, String, String, Boolean)
    • u(Attr[])
    • u(IEnumerable<Attr>)
    • u(String, String, String, String, String, String)
    • u_(Html[])
    • u_(IEnumerable<Html>)
    • ul(Attr[])
    • ul(IEnumerable<Attr>)
    • ul(String, String, String, String, String, String, String, Boolean, String)
    • ul_(Html[])
    • ul_(IEnumerable<Html>)
    • video(Attr[])
    • video(IEnumerable<Attr>)
    • video(String, String, String, String, String, String, String, String, String, String, String, Boolean, Boolean, Boolean, Boolean, String)
    • video_(Html[])
    • video_(IEnumerable<Html>)
    • wbr(Attr[])
    • wbr(IEnumerable<Attr>)
    • wbr(String, String, String, String, String, String)
    • Write(TextWriter)
    • Write(TextWriter, HtmlEncoder)
    • WriteAsync(TextWriter)
    • WriteAsync(TextWriter, HtmlEncoder)
  • Operators
    • Implicit(Html[] to Html)
    • Implicit(TagBuilder to Html)
    • Implicit(ImmutableArray<Html> to Html)
    • Implicit(ImmutableList<Html> to Html)
    • Implicit(List<Html> to Html)
    • Implicit(String to Html)
  • Extension Methods
Back to top Generated by DocFX