a
This commit is contained in:
@@ -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: 0x020001F0 RID: 496
|
||||
[Token(Token = "0x20001F0")]
|
||||
[ComVisible(true)]
|
||||
public interface IResourceReader : IEnumerable, IDisposable
|
||||
{
|
||||
/// <summary>Closes the resource reader after releasing any resources associated with it.</summary>
|
||||
// Token: 0x0600131F RID: 4895
|
||||
[Token(Token = "0x600131F")]
|
||||
[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: 0x06001320 RID: 4896
|
||||
[Token(Token = "0x6001320")]
|
||||
[Address(Slot = "1")]
|
||||
IDictionaryEnumerator GetEnumerator();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user