Partager via


ViewLocalizer.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:
ViewLocalizer.cs
Source:
ViewLocalizer.cs
Source:
ViewLocalizer.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 ^ key); };
public virtual Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString this[string key] { get; }
member this.Item(string) : Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString
Default Public Overridable ReadOnly Property Item(key As String) As LocalizedHtmlString

Paramètres

key
String

Valeur de propriété

Ressource de chaîne en tant que LocalizedHtmlString.

Implémente

S’applique à

Item[String, Object[]]

Source:
ViewLocalizer.cs
Source:
ViewLocalizer.cs
Source:
ViewLocalizer.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 ^ key, ... cli::array <System::Object ^> ^ arguments); };
public virtual Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString this[string key, params object[] arguments] { get; }
member this.Item(string * obj[]) : Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString
Default Public Overridable ReadOnly Property Item(key As String, ParamArray arguments As Object()) As LocalizedHtmlString

Paramètres

key
String
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 à