System.Web
2.0.0.0
A resource provider facilitates the retrieving of values from a resource file. When an expression of the form <%$ Resources: classKey, resourceKey %> is encountered during page parsing, the resource provider returns the localized value for the resource. The class creates instances of objects for use in retrieving the values.
Defines the interface a class must implement to act as a resource provider.
Method
System.Object
When implemented, the method returns the localized value for a resource key based on the current culture. The implementing class could retrieve the property if a value for the parameter is not passed in.
Returns a resource object for the key and culture.
An that contains the resource value for the and .
The key identifying a particular resource.
The culture identifying a localized value for the resource.
2.0.0.0
Property
System.Resources.IResourceReader
To be added.
An object reads sequential name/value pairs from a source. The and classes provide default interface implementation for reading from .resources and .resx files, respectively. Other implementations of the interface could read from any source containing resource values.
Gets an object to read resource values from a source.
2.0.0.0