Compartilhar via


HtmlContentBuilderExtensions.AppendLine Método

Definição

Sobrecargas

AppendLine(IHtmlContentBuilder)

Acrescenta um NewLine.

AppendLine(IHtmlContentBuilder, IHtmlContent)

Acrescenta um NewLine depois de acrescentar o IHtmlContent valor.

AppendLine(IHtmlContentBuilder, String)

Acrescenta um NewLine depois de acrescentar o String valor. O valor é tratado como não codificado conforme fornecido e será codificado em HTML antes de gravar na saída.

AppendLine(IHtmlContentBuilder)

Origem:
HtmlContentBuilderExtensions.cs
Origem:
HtmlContentBuilderExtensions.cs

Acrescenta um 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

Parâmetros

Retornos

O IHtmlContentBuilder.

Aplica-se a

AppendLine(IHtmlContentBuilder, IHtmlContent)

Origem:
HtmlContentBuilderExtensions.cs
Origem:
HtmlContentBuilderExtensions.cs

Acrescenta um NewLine depois de acrescentar o IHtmlContent valor.

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

Parâmetros

content
IHtmlContent

O IHtmlContent acrescentar.

Retornos

O IHtmlContentBuilder.

Aplica-se a

AppendLine(IHtmlContentBuilder, String)

Origem:
HtmlContentBuilderExtensions.cs
Origem:
HtmlContentBuilderExtensions.cs

Acrescenta um NewLine depois de acrescentar o String valor. O valor é tratado como não codificado conforme fornecido e será codificado em HTML antes de gravar na saída.

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

Parâmetros

unencoded
String

O String acrescentar.

Retornos

O IHtmlContentBuilder.

Aplica-se a