Lire en anglais Modifier

Partager via


IImplicitResourceProvider Interface

Definition

Defines methods a class implements to act as an implicit resource provider.

C#
public interface IImplicitResourceProvider

Remarks

Resources can be declared explicitly or implicitly within a page. Implicit resources allow the developer to assign a collection of resource values to a control in one statement rather than assigning each value individually. When the page parser encounters an implicit resource in the form of meta:resourcekey="WelcomeLabel", it assigns all the values with the WelcomeLabel resource key prefix to the corresponding values in the control. For example, if a resource file defines values for WelcomeLabel.Text and WelcomeLabel.ToolTip, those values would be assigned to a Label control with an implicit reference to WelcomeLabel.

The IImplicitResourceProvider interface defines the methods a resource provider implements to access implicit resources. You can obtain a particular value using the GetObject method.

If you create a custom resource provider, you do not need to provide customized support for implicit resource localization. Implicit localization will work with your resource provider.

Methods

GetImplicitResourceKeys(String)

Gets a collection of implicit resource keys as specified by the prefix.

GetObject(ImplicitResourceKey, CultureInfo)

Gets an object representing the value of the specified resource key.

Applies to

Produit Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also