Partager via


HtmlLocalizer<TResource>.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:
HtmlLocalizerOfT.cs
Source:
HtmlLocalizerOfT.cs
Source:
HtmlLocalizerOfT.cs

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

public:
 virtual property Microsoft::AspNetCore::Mvc::Localization::LocalizedHtmlString ^ default[System::String ^] { Microsoft::AspNetCore::Mvc::Localization::LocalizedHtmlString ^ get(System::String ^ name); };
public virtual Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString this[string name] { get; }
member this.Item(string) : Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString
Default Public Overridable 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.

Implémente

S’applique à

Item[String, Object[]]

Source:
HtmlLocalizerOfT.cs
Source:
HtmlLocalizerOfT.cs
Source:
HtmlLocalizerOfT.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:
 virtual 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 virtual Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString this[string name, params object[] arguments] { get; }
member this.Item(string * obj[]) : Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString
Default Public Overridable 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.

Implémente

S’applique à