Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

IStringLocalizer.Item[] Property

Definition

Namespace:
Microsoft.Extensions.Localization
Assembly:
Microsoft.Extensions.Localization.Abstractions.dll
Package:
Microsoft.Extensions.Localization.Abstractions v11.0.0-preview.5.26302.115

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Overloads

Name Description
Item[String]

Gets the string resource with the given name.

Item[String, Object[]]

Gets the string resource with the given name and formatted with the supplied arguments.

Item[String]

Source:
IStringLocalizer.cs
Source:
IStringLocalizer.cs
Source:
IStringLocalizer.cs
Source:
IStringLocalizer.cs
Source:
IStringLocalizer.cs

Gets the string resource with the given name.

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

Parameters

name
String

The name of the string resource.

Property Value

The string resource as a LocalizedString.

Applies to

Item[String, Object[]]

Source:
IStringLocalizer.cs
Source:
IStringLocalizer.cs
Source:
IStringLocalizer.cs
Source:
IStringLocalizer.cs
Source:
IStringLocalizer.cs

Gets the string resource with the given name and formatted with the supplied arguments.

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

Parameters

name
String

The name of the string resource.

arguments
Object[]

The values to format the string with.

Property Value

The formatted string resource as a LocalizedString.

Applies to


Feedback

Was this page helpful?