using System;
using System.Collections;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Resources
{
/// Provides the base functionality for reading data from resource files.
// Token: 0x020001F0 RID: 496
[Token(Token = "0x20001F0")]
[ComVisible(true)]
public interface IResourceReader : IEnumerable, IDisposable
{
/// Closes the resource reader after releasing any resources associated with it.
// Token: 0x0600131F RID: 4895
[Token(Token = "0x600131F")]
[Address(Slot = "0")]
void Close();
/// Returns a dictionary enumerator of the resources for this reader.
/// A dictionary enumerator for the resources for this reader.
// Token: 0x06001320 RID: 4896
[Token(Token = "0x6001320")]
[Address(Slot = "1")]
IDictionaryEnumerator GetEnumerator();
}
}