using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Security.Cryptography.X509Certificates
{
/// Supports a simple iteration over an . This class cannot be inherited.
// Token: 0x020001E7 RID: 487
[Token(Token = "0x20001E7")]
public sealed class X509ChainElementEnumerator : IEnumerator
{
// Token: 0x06000CCA RID: 3274 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CCA")]
[Address(RVA = "0xC8E440", Offset = "0xC8D440", VA = "0x180C8E440")]
internal X509ChainElementEnumerator(IEnumerable enumerable)
{
}
/// Gets the current element in the .
/// The current element in the .
/// The enumerator is positioned before the first element of the collection or after the last element.
// Token: 0x17000264 RID: 612
// (get) Token: 0x06000CCB RID: 3275 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000264")]
object IEnumerator.Current
{
[Token(Token = "0x6000CCB")]
[Address(RVA = "0xC8E3F0", Offset = "0xC8D3F0", VA = "0x180C8E3F0", Slot = "5")]
get
{
return null;
}
}
/// Advances the enumerator to the next element in the .
///
/// 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: 0x06000CCC RID: 3276 RVA: 0x00006B70 File Offset: 0x00004D70
[Token(Token = "0x6000CCC")]
[Address(RVA = "0xC8E350", Offset = "0xC8D350", VA = "0x180C8E350", Slot = "4")]
public bool MoveNext()
{
return default(bool);
}
/// Sets the enumerator to its initial position, which is before the first element in the .
/// The collection was modified after the enumerator was created.
// Token: 0x06000CCD RID: 3277 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CCD")]
[Address(RVA = "0xC8E3A0", Offset = "0xC8D3A0", VA = "0x180C8E3A0", Slot = "6")]
public void Reset()
{
}
// Token: 0x040006E3 RID: 1763
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40006E3")]
private IEnumerator enumerator;
}
}