using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Provides the ability to navigate through an object. This class cannot be inherited.
// Token: 0x020001CD RID: 461
[Token(Token = "0x20001CD")]
public sealed class OidEnumerator : IEnumerator
{
// Token: 0x06000C3A RID: 3130 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C3A")]
[Address(RVA = "0xC76D70", Offset = "0xC75D70", VA = "0x180C76D70")]
internal OidEnumerator(OidCollection oids)
{
}
/// Gets the current object in an object.
/// The current object.
// Token: 0x1700023A RID: 570
// (get) Token: 0x06000C3B RID: 3131 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700023A")]
object IEnumerator.Current
{
[Token(Token = "0x6000C3B")]
[Address(RVA = "0xC76D40", Offset = "0xC75D40", VA = "0x180C76D40", Slot = "5")]
get
{
return null;
}
}
/// Advances to the next object in an object.
///
/// , if the enumerator was successfully advanced to the next element; , if the enumerator has passed the end of the collection.
/// The collection was modified after the enumerator was created.
// Token: 0x06000C3C RID: 3132 RVA: 0x00006948 File Offset: 0x00004B48
[Token(Token = "0x6000C3C")]
[Address(RVA = "0xC76CE0", Offset = "0xC75CE0", VA = "0x180C76CE0", Slot = "4")]
public bool MoveNext()
{
return default(bool);
}
/// Sets an enumerator to its initial position.
/// The collection was modified after the enumerator was created.
// Token: 0x06000C3D RID: 3133 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C3D")]
[Address(RVA = "0x4EDE50", Offset = "0x4ECE50", VA = "0x1804EDE50", Slot = "6")]
public void Reset()
{
}
// Token: 0x0400066E RID: 1646
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400066E")]
private OidCollection m_oids;
// Token: 0x0400066F RID: 1647
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400066F")]
private int m_current;
}
}