New to Telerik UI for .NET MAUIStart a free 30-day trial

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:

C#
public interface ILocalizationManager

Derived Classes: TelerikLocalizationManager

Properties

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

C#
ResourceManager ResourceManager { get; set; }
Property Value:

A ResourceManager instance that provides access to localized resources.

Methods

Retrieves a localized string for the specified key.

C#
string GetString(string key)
Parameters:keystring

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.