Compartir a través de


HtmlFormattableString Constructores

Definición

Sobrecargas

HtmlFormattableString(String, Object[])

Crea un objeto con HtmlFormattableString los especificados format y args.

HtmlFormattableString(IFormatProvider, String, Object[])

Crea un objeto HtmlFormattableString con el formatProviderespecificado y formatargs.

HtmlFormattableString(String, Object[])

Source:
HtmlFormattableString.cs
Source:
HtmlFormattableString.cs
Source:
HtmlFormattableString.cs

Crea un objeto con HtmlFormattableString los especificados format y args.

public:
 HtmlFormattableString(System::String ^ format, ... cli::array <System::Object ^> ^ args);
public HtmlFormattableString (string format, params object[] args);
public HtmlFormattableString (string format, params object?[] args);
new Microsoft.AspNetCore.Html.HtmlFormattableString : string * obj[] -> Microsoft.AspNetCore.Html.HtmlFormattableString
Public Sub New (format As String, ParamArray args As Object())

Parámetros

format
String

Cadena de formato compuesto.

args
Object[]

Matriz que contiene objetos a los que se va a dar formato.

Se aplica a

HtmlFormattableString(IFormatProvider, String, Object[])

Source:
HtmlFormattableString.cs
Source:
HtmlFormattableString.cs
Source:
HtmlFormattableString.cs

Crea un objeto HtmlFormattableString con el formatProviderespecificado y formatargs.

public:
 HtmlFormattableString(IFormatProvider ^ formatProvider, System::String ^ format, ... cli::array <System::Object ^> ^ args);
public HtmlFormattableString (IFormatProvider formatProvider, string format, params object[] args);
public HtmlFormattableString (IFormatProvider? formatProvider, string format, params object[] args);
public HtmlFormattableString (IFormatProvider? formatProvider, string format, params object?[] args);
new Microsoft.AspNetCore.Html.HtmlFormattableString : IFormatProvider * string * obj[] -> Microsoft.AspNetCore.Html.HtmlFormattableString
Public Sub New (formatProvider As IFormatProvider, format As String, ParamArray args As Object())

Parámetros

formatProvider
IFormatProvider

Objeto que proporciona información de formato específica de la referencia cultural.

format
String

Cadena de formato compuesto.

args
Object[]

Matriz que contiene objetos a los que se va a dar formato.

Se aplica a