IResourceReader Interface
Provides the base functionality to read data from resource files.
For a list of all members of this type, see IResourceReader Members.
[Visual Basic] Public Interface IResourceReader Inherits IEnumerable, IDisposable [C#] public interface IResourceReader : IEnumerable, IDisposable [C++] public __gc __interface IResourceReader : public IEnumerable, IDisposable [JScript] public interface IResourceReader implements IEnumerable, IDisposable
Classes that Implement IResourceReader
| Class | Description |
|---|---|
| ResourceReader | Enumerates .resources files and streams, reading sequential resource name and value pairs. |
| ResXResourceReader | Enumerates XML resource (.resx) files and streams, and reads the sequential resource name and value pairs. |
Remarks
Resource readers are used to read a stream of resource files in a particular file format. Implement this interface when you need to control the way in which a resource file is read (for example, if the resouce file was written using a customized ResourceWriter). Otherwise, use the default ResourceReader or ResXResourceReader.See the Developing World-Ready Applications for details on the default resource file format.
Requirements
Namespace: System.Resources
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework
Assembly: Mscorlib (in Mscorlib.dll)
See Also
IResourceReader Members | System.Resources Namespace | IEnumerable | Developing World-Ready Applications