TagHelperContent.IHtmlContentBuilder.Append(String) Method

Definition

Appends a String value. The value is treated as unencoded as-provided, and will be HTML encoded before writing to output.

 virtual Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ Microsoft.AspNetCore.Html.IHtmlContentBuilder.Append(System::String ^ unencoded) = Microsoft::AspNetCore::Html::IHtmlContentBuilder::Append;
Microsoft.AspNetCore.Html.IHtmlContentBuilder IHtmlContentBuilder.Append (string unencoded);
abstract member Microsoft.AspNetCore.Html.IHtmlContentBuilder.Append : string -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
override this.Microsoft.AspNetCore.Html.IHtmlContentBuilder.Append : string -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
Function Append (unencoded As String) As IHtmlContentBuilder Implements IHtmlContentBuilder.Append

Parameters

unencoded
String

The String to append.

Returns

The IHtmlContentBuilder.

Implements

Applies to