28 lines
888 B
C#
28 lines
888 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Resources
|
|
{
|
|
/// <summary>Provides the base functionality for reading data from resource files.</summary>
|
|
// Token: 0x020001F7 RID: 503
|
|
[Token(Token = "0x20001F7")]
|
|
[ComVisible(true)]
|
|
public interface IResourceReader : IEnumerable, IDisposable
|
|
{
|
|
/// <summary>Closes the resource reader after releasing any resources associated with it.</summary>
|
|
// Token: 0x0600135C RID: 4956
|
|
[Token(Token = "0x600135C")]
|
|
[Address(Slot = "0")]
|
|
void Close();
|
|
|
|
/// <summary>Returns a dictionary enumerator of the resources for this reader.</summary>
|
|
/// <returns>A dictionary enumerator for the resources for this reader.</returns>
|
|
// Token: 0x0600135D RID: 4957
|
|
[Token(Token = "0x600135D")]
|
|
[Address(Slot = "1")]
|
|
IDictionaryEnumerator GetEnumerator();
|
|
}
|
|
}
|