HtmlContentBuilderExtensions.AppendFormat Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
AppendFormat(IHtmlContentBuilder, String, Object[]) |
Ajoute le spécifié |
AppendFormat(IHtmlContentBuilder, IFormatProvider, String, Object[]) |
Ajoute le spécifié |
AppendFormat(IHtmlContentBuilder, String, Object[])
Ajoute le spécifié format
au contenu existant après avoir remplacé chaque élément de format par la représentation encodée String HTML de l’élément correspondant dans le args
tableau.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendFormat(Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ builder, System::String ^ format, ... cli::array <System::Object ^> ^ args);
public static Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendFormat (this Microsoft.AspNetCore.Html.IHtmlContentBuilder builder, string format, params object[] args);
public static Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendFormat (this Microsoft.AspNetCore.Html.IHtmlContentBuilder builder, string format, params object?[] args);
static member AppendFormat : Microsoft.AspNetCore.Html.IHtmlContentBuilder * string * obj[] -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
<Extension()>
Public Function AppendFormat (builder As IHtmlContentBuilder, format As String, ParamArray args As Object()) As IHtmlContentBuilder
Paramètres
- builder
- IHtmlContentBuilder
L’IHtmlContentBuilderopérateur
- format
- String
Format composite String (voir http://msdn.microsoft.com/en-us/library/txafckwd.aspx). La chaîne de format est supposée être encodée au format HTML telle qu’elle est fournie, et aucun encodage supplémentaire n’est effectué.
- args
- Object[]
Tableau d’objets à mettre en forme. Chaque élément du tableau sera mis en forme, puis encodé au format HTML.
Retours
Référence à cette instance après l'opération d'ajout.
S’applique à
AppendFormat(IHtmlContentBuilder, IFormatProvider, String, Object[])
Ajoute le spécifié format
au contenu existant avec les informations du formatProvider
après avoir remplacé chaque élément de format par la représentation encodée String HTML de l’élément correspondant dans le args
tableau.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ AppendFormat(Microsoft::AspNetCore::Html::IHtmlContentBuilder ^ builder, IFormatProvider ^ formatProvider, System::String ^ format, ... cli::array <System::Object ^> ^ args);
public static Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendFormat (this Microsoft.AspNetCore.Html.IHtmlContentBuilder builder, IFormatProvider formatProvider, string format, params object[] args);
public static Microsoft.AspNetCore.Html.IHtmlContentBuilder AppendFormat (this Microsoft.AspNetCore.Html.IHtmlContentBuilder builder, IFormatProvider formatProvider, string format, params object?[] args);
static member AppendFormat : Microsoft.AspNetCore.Html.IHtmlContentBuilder * IFormatProvider * string * obj[] -> Microsoft.AspNetCore.Html.IHtmlContentBuilder
<Extension()>
Public Function AppendFormat (builder As IHtmlContentBuilder, formatProvider As IFormatProvider, format As String, ParamArray args As Object()) As IHtmlContentBuilder
Paramètres
- builder
- IHtmlContentBuilder
L’IHtmlContentBuilderopérateur
- formatProvider
- IFormatProvider
Objet qui fournit des informations de mise en forme propres à la culture.
- format
- String
Format composite String (voir http://msdn.microsoft.com/en-us/library/txafckwd.aspx). La chaîne de format est supposée être encodée au format HTML telle qu’elle est fournie, et aucun encodage supplémentaire n’est effectué.
- args
- Object[]
Tableau d’objets à mettre en forme. Chaque élément du tableau sera mis en forme, puis encodé au format HTML.
Retours
Référence à cette instance après l'opération d'ajout.