HtmlContentBuilderExtensions.AppendLine Méthode

Définition

Surcharges

AppendLine(IHtmlContentBuilder)

Ajoute un NewLine.

AppendLine(IHtmlContentBuilder, IHtmlContent)

Ajoute un NewLine après avoir ajouté la IHtmlContent valeur .

AppendLine(IHtmlContentBuilder, String)

Ajoute un NewLine après avoir ajouté la String valeur . La valeur est traitée comme non codée comme fournie et sera encodée au format HTML avant d’écrire dans la sortie.

AppendLine(IHtmlContentBuilder)

Ajoute un NewLine.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendLine(Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ builder);
public static Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendLine (this Microsoft.AspNetCore.Html.IHtmlContentBuilder builder);
static member AppendLine : Microsoft.AspNetCore.Html.IHtmlContentBuilder -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
<Extension()>
Public Function AppendLine (builder As IHtmlContentBuilder) As IHtmlContentBuilder

Paramètres

Retours

L’IHtmlContentBuilderopérateur

S’applique à

AppendLine(IHtmlContentBuilder, IHtmlContent)

Ajoute un NewLine après avoir ajouté la IHtmlContent valeur .

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

Paramètres

content
IHtmlContent

IHtmlContent à ajouter.

Retours

L’IHtmlContentBuilderopérateur

S’applique à

AppendLine(IHtmlContentBuilder, String)

Ajoute un NewLine après avoir ajouté la String valeur . La valeur est traitée comme non codée comme fournie et sera encodée au format HTML avant d’écrire dans la sortie.

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

Paramètres

unencoded
String

String à ajouter.

Retours

L’IHtmlContentBuilderopérateur

S’applique à