IHtmlContentBuilder.AppendHtml Method

Definition

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)

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)

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

encoded
String

The HTML encoded String to append.

Returns

The IHtmlContentBuilder.

Applies to