22 lines
759 B
C#
22 lines
759 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Resources
|
|
{
|
|
/// <summary>Provides the base functionality to read data from resource files.</summary>
|
|
// Token: 0x02000272 RID: 626
|
|
[ComVisible(true)]
|
|
public interface IResourceReader : IEnumerable, IDisposable
|
|
{
|
|
/// <summary>Closes the resource reader after releasing any resources associated with it.</summary>
|
|
// Token: 0x06002023 RID: 8227
|
|
void Close();
|
|
|
|
/// <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> of the resources for this reader.</summary>
|
|
/// <returns>A dictionary enumerator for the resources for this reader.</returns>
|
|
// Token: 0x06002024 RID: 8228
|
|
IDictionaryEnumerator GetEnumerator();
|
|
}
|
|
}
|