Condividi tramite


HtmlContentBuilderExtensions.AppendLine Metodo

Definizione

Overload

AppendLine(IHtmlContentBuilder)

Aggiunge un NewLineoggetto .

AppendLine(IHtmlContentBuilder, IHtmlContent)

Aggiunge un oggetto NewLine dopo aver aggiunto il IHtmlContent valore.

AppendLine(IHtmlContentBuilder, String)

Aggiunge un oggetto NewLine dopo aver aggiunto il String valore. Il valore viene considerato come non codificato come specificato e verrà codificato HTML prima di scrivere nell'output.

AppendLine(IHtmlContentBuilder)

Origine:
HtmlContentBuilderExtensions.cs
Origine:
HtmlContentBuilderExtensions.cs
Origine:
HtmlContentBuilderExtensions.cs

Aggiunge un NewLineoggetto .

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

Parametri

Restituisce

Oggetto IHtmlContentBuilder.

Si applica a

AppendLine(IHtmlContentBuilder, IHtmlContent)

Origine:
HtmlContentBuilderExtensions.cs
Origine:
HtmlContentBuilderExtensions.cs
Origine:
HtmlContentBuilderExtensions.cs

Aggiunge un oggetto NewLine dopo aver aggiunto il IHtmlContent valore.

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

Parametri

content
IHtmlContent

IHtmlContent da accodare.

Restituisce

Oggetto IHtmlContentBuilder.

Si applica a

AppendLine(IHtmlContentBuilder, String)

Origine:
HtmlContentBuilderExtensions.cs
Origine:
HtmlContentBuilderExtensions.cs
Origine:
HtmlContentBuilderExtensions.cs

Aggiunge un oggetto NewLine dopo aver aggiunto il String valore. Il valore viene considerato come non codificato come specificato e verrà codificato HTML prima di scrivere nell'output.

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

Parametri

unencoded
String

String da accodare.

Restituisce

Oggetto IHtmlContentBuilder.

Si applica a