IHtmlContentBuilder.AppendHtml Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AppendHtml(IHtmlContent) |
Appends an IHtmlContent instance. |
AppendHtml(String) |
Appends an HTML encoded String value. The value is treated as HTML encoded as-provided, and no further encoding will be performed. |
AppendHtml(IHtmlContent)
- Source:
- IHtmlContentBuilder.cs
Appends an IHtmlContent instance.
public:
Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendHtml(Microsoft::AspNetCore::Html::IHtmlContent ^ content);
public Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendHtml (Microsoft.AspNetCore.Html.IHtmlContent content);
abstract member AppendHtml : Microsoft.AspNetCore.Html.IHtmlContent -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
Public Function AppendHtml (content As IHtmlContent) As IHtmlContentBuilder
Parameters
- content
- IHtmlContent
The IHtmlContent to append.
Returns
The IHtmlContentBuilder.
Applies to
AppendHtml(String)
- Source:
- IHtmlContentBuilder.cs
Appends an HTML encoded String value. The value is treated as HTML encoded as-provided, and no further encoding will be performed.
public:
Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendHtml(System::String ^ encoded);
public Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendHtml (string encoded);
abstract member AppendHtml : string -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
Public Function AppendHtml (encoded As String) As IHtmlContentBuilder
Parameters
Returns
The IHtmlContentBuilder.