This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,27 @@
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();
}
}