Interface IHtmlBuilderRenderer<TModel>
Represents a process which can render a TModel
using an HtmlBuilder.
Declaration
public interface IHtmlBuilderRenderer<in TModel>
Type Parameters
Name | Description |
---|---|
TModel |
The model type. |
Methods
GetHtmlBuilder(TModel)
Get an HtmlBuilder which can render model
as HTML.
Declaration
HtmlBuilder GetHtmlBuilder(TModel model)
Parameters
Type | Name | Description |
---|---|---|
TModel |
model |
The model. |
Returns
Type | Description |
---|---|
A HtmlBuilder. |