Condividi tramite


HtmlContentBuilder.AppendHtml Metodo

Definizione

Overload

AppendHtml(IHtmlContent)

Aggiunge un'istanza IHtmlContent .

AppendHtml(String)

Aggiunge un valore codificato String HTML. Il valore viene considerato come codificato html come specificato e non verrà eseguita alcuna codifica aggiuntiva.

AppendHtml(IHtmlContent)

Origine:
HtmlContentBuilder.cs
Origine:
HtmlContentBuilder.cs
Origine:
HtmlContentBuilder.cs

Aggiunge un'istanza IHtmlContent .

public:
 virtual Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendHtml(Microsoft::AspNetCore::Html::IHtmlContent ^ htmlContent);
public Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendHtml (Microsoft.AspNetCore.Html.IHtmlContent htmlContent);
public Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendHtml (Microsoft.AspNetCore.Html.IHtmlContent? htmlContent);
abstract member AppendHtml : Microsoft.AspNetCore.Html.IHtmlContent -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
override this.AppendHtml : Microsoft.AspNetCore.Html.IHtmlContent -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
Public Function AppendHtml (htmlContent As IHtmlContent) As IHtmlContentBuilder

Parametri

htmlContent
IHtmlContent

Restituisce

Oggetto IHtmlContentBuilder.

Implementazioni

Si applica a

AppendHtml(String)

Origine:
HtmlContentBuilder.cs
Origine:
HtmlContentBuilder.cs
Origine:
HtmlContentBuilder.cs

Aggiunge un valore codificato String HTML. Il valore viene considerato come codificato html come specificato e non verrà eseguita alcuna codifica aggiuntiva.

public:
 virtual Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendHtml(System::String ^ encoded);
public Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendHtml (string encoded);
public Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendHtml (string? encoded);
abstract member AppendHtml : string -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
override this.AppendHtml : string -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
Public Function AppendHtml (encoded As String) As IHtmlContentBuilder

Parametri

encoded
String

Codice HTML codificato String per aggiungere.

Restituisce

Oggetto IHtmlContentBuilder.

Implementazioni

Si applica a