62 lines
2.8 KiB
C#
62 lines
2.8 KiB
C#
using System;
|
|
using System.Collections;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Security.Cryptography.X509Certificates
|
|
{
|
|
/// <summary>Supports a simple iteration over an <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" />. This class cannot be inherited.</summary>
|
|
// 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)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" />.</summary>
|
|
/// <returns>The current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" />.</returns>
|
|
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
|
|
// 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;
|
|
}
|
|
}
|
|
|
|
/// <summary>Advances the enumerator to the next element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" />.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
|
|
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
|
|
// 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);
|
|
}
|
|
|
|
/// <summary>Sets the enumerator to its initial position, which is before the first element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainElementCollection" />.</summary>
|
|
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
|
|
// 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;
|
|
}
|
|
}
|