Partager via


IHtmlLocalizer.Item[] Propriété

Définition

Surcharges

Item[String]

Obtient la ressource de chaîne portant le nom indiqué.

Item[String, Object[]]

Obtient la ressource de chaîne portant le nom donné et mise en forme avec les arguments fournis. Les arguments seront encodés au format HTML.

Item[String]

Source:
IHtmlLocalizer.cs

Obtient la ressource de chaîne portant le nom indiqué.

public:
 property Microsoft::AspNetCore::Mvc::Localization::LocalizedHtmlString ^ default[System::String ^] { Microsoft::AspNetCore::Mvc::Localization::LocalizedHtmlString ^ get(System::String ^ name); };
public Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString this[string name] { get; }
member this.Item(string) : Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString
Default Public ReadOnly Property Item(name As String) As LocalizedHtmlString

Paramètres

name
String

Nom de la ressource de chaîne.

Valeur de propriété

Ressource de chaîne en tant que LocalizedHtmlString.

S’applique à

Item[String, Object[]]

Source:
IHtmlLocalizer.cs

Obtient la ressource de chaîne portant le nom donné et mise en forme avec les arguments fournis. Les arguments seront encodés au format HTML.

public:
 property Microsoft::AspNetCore::Mvc::Localization::LocalizedHtmlString ^ default[System::String ^, cli::array <System::Object ^> ^] { Microsoft::AspNetCore::Mvc::Localization::LocalizedHtmlString ^ get(System::String ^ name, ... cli::array <System::Object ^> ^ arguments); };
public Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString this[string name, params object[] arguments] { get; }
member this.Item(string * obj[]) : Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString
Default Public ReadOnly Property Item(name As String, ParamArray arguments As Object()) As LocalizedHtmlString

Paramètres

name
String

Nom de la ressource de chaîne.

arguments
Object[]

Valeurs à utiliser pour mettre en forme la chaîne.

Valeur de propriété

Ressource de chaîne mise en forme en tant que LocalizedHtmlString.

S’applique à