IStringLocalizer.Item[] Eigenschap

Definitie

Overloads

Name Description
Item[String]

Hiermee haalt u de tekenreeksresource op met de opgegeven naam.

Item[String, Object[]]

Hiermee haalt u de tekenreeksresource op met de opgegeven naam en opgemaakt met de opgegeven argumenten.

Item[String]

Bron:
IStringLocalizer.cs
Bron:
IStringLocalizer.cs
Bron:
IStringLocalizer.cs
Bron:
IStringLocalizer.cs
Bron:
IStringLocalizer.cs

Hiermee haalt u de tekenreeksresource op met de opgegeven naam.

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

De naam van de tekenreeksresource.

Waarde van eigenschap

De tekenreeksresource als een LocalizedString.

Van toepassing op

Item[String, Object[]]

Bron:
IStringLocalizer.cs
Bron:
IStringLocalizer.cs
Bron:
IStringLocalizer.cs
Bron:
IStringLocalizer.cs
Bron:
IStringLocalizer.cs

Hiermee haalt u de tekenreeksresource op met de opgegeven naam en opgemaakt met de opgegeven argumenten.

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

De naam van de tekenreeksresource.

arguments
Object[]

De waarden waarmee de tekenreeks moet worden opgemaakt.

Waarde van eigenschap

De opgemaakte tekenreeksresource als een LocalizedString.

Van toepassing op