Interface
ILocalizationManager

Defines the contract for managing localization resources in Telerik MAUI controls. This interface provides access to resource management and string retrieval functionality.

Definition

Namespace:Telerik.Maui

Assembly:Telerik.Maui.Core.dll

Syntax:

cs-api-definition
public interface ILocalizationManager

Properties

ResourceManager

Gets or sets the resource manager used to retrieve localized strings.

Declaration

cs-api-definition
ResourceManager ResourceManager { get; set; }

Property Value

ResourceManager

A ResourceManager instance that provides access to localized resources.

Methods

GetString(string)

Retrieves a localized string for the specified key.

Declaration

cs-api-definition
string GetString(string key)

Parameters

key

string

The key that identifies the localized string to retrieve.

Returns

string

The localized string associated with the specified key, or null if the key is not found.