Interface IHtmlRenderer<TModel>
Represents a process which can render a TModel
as Html.
Declaration
public interface IHtmlRenderer<in TModel>
Type Parameters
Name | Description |
---|---|
TModel |
The model type. |
Methods
Render(TModel)
Render a TModel
as Html.
Declaration
Html Render(TModel model)
Parameters
Type | Name | Description |
---|---|---|
TModel |
model |
The model. |
Returns
Type | Description |
---|---|
The HTML. |