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.

public:
 Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ Append(System::String ^ unencoded);
public Microsoft.AspNetCore.Html.IHtmlContentBuilder Append (string unencoded);
abstract member Append : string -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
Public Function Append (unencoded As String) As IHtmlContentBuilder

Parameters

unencoded
String

The String to append.

Returns

The IHtmlContentBuilder.

Applies to