Struct TagBuilder
Represents a "half-open" HTML tag which is waiting for its children.
Inherited Members
Namespace: Eighty
Assembly: Eighty.dll
Syntax
public struct TagBuilder
Methods
| Improve this Doc View Source_(Html[])
Add children to the tag.
Declaration
public Html _(params Html[] children)
Parameters
| Type | Name | Description |
|---|---|---|
| Html[] | children |
Returns
| Type | Description |
|---|---|
| Html | An instance of Html |
_(IEnumerable<Html>)
Add children to the tag.
Declaration
public Html _(IEnumerable<Html> children)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<Html> | children |
Returns
| Type | Description |
|---|---|
| Html | An instance of Html |
_(List<Html>)
Add children to the tag.
Declaration
public Html _(List<Html> children)
Parameters
| Type | Name | Description |
|---|---|---|
| List<Html> | children |
Returns
| Type | Description |
|---|---|
| Html | An instance of Html |
_(ImmutableArray<Html>)
Add children to the tag.
Declaration
public Html _(ImmutableArray<Html> children)
Parameters
| Type | Name | Description |
|---|---|---|
| ImmutableArray<Html> | children |
Returns
| Type | Description |
|---|---|
| Html | An instance of Html |
_(ImmutableList<Html>)
Add children to the tag.
Declaration
public Html _(ImmutableList<Html> children)
Parameters
| Type | Name | Description |
|---|---|---|
| ImmutableList<Html> | children |
Returns
| Type | Description |
|---|---|
| Html | An instance of Html |