HtmlContentBuilderExtensions.AppendHtmlLine Method

Definition

Appends an NewLine after appending the String value. The value is treated as HTML encoded as-provided, and no further encoding will be performed.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendHtmlLine(Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ builder, System::String ^ encoded);
public static Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendHtmlLine (this Microsoft.AspNetCore.Html.IHtmlContentBuilder builder, string encoded);
static member AppendHtmlLine : Microsoft.AspNetCore.Html.IHtmlContentBuilder * string -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
<Extension()>
Public Function AppendHtmlLine (builder As IHtmlContentBuilder, encoded As String) As IHtmlContentBuilder

Parameters

encoded
String

The HTML encoded String to append.

Returns

The IHtmlContentBuilder.

Applies to