IHtmlContentBuilder.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:
IHtmlContentBuilder.cs

Aggiunge un'istanza IHtmlContent .

public:
 Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendHtml(Microsoft::AspNetCore::Html::IHtmlContent ^ content);
public Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendHtml (Microsoft.AspNetCore.Html.IHtmlContent content);
abstract member AppendHtml : Microsoft.AspNetCore.Html.IHtmlContent -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
Public Function AppendHtml (content As IHtmlContent) As IHtmlContentBuilder

Parametri

content
IHtmlContent

IHtmlContent da accodare.

Restituisce

Oggetto IHtmlContentBuilder.

Si applica a

AppendHtml(String)

Origine:
IHtmlContentBuilder.cs

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

public:
 Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendHtml(System::String ^ encoded);
public Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendHtml (string encoded);
abstract member 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.

Si applica a