Files
2026-04-10 22:50:51 +02:00

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: 0x020001EB RID: 491
[Token(Token = "0x20001EB")]
public sealed class X509ChainElementEnumerator : IEnumerator
{
// Token: 0x06000CE0 RID: 3296 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CE0")]
[Address(RVA = "0x51B1D0", Offset = "0x519FD0", VA = "0x18051B1D0")]
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: 0x17000268 RID: 616
// (get) Token: 0x06000CE1 RID: 3297 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000268")]
object IEnumerator.Current
{
[Token(Token = "0x6000CE1")]
[Address(RVA = "0x51B180", Offset = "0x519F80", VA = "0x18051B180", 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: 0x06000CE2 RID: 3298 RVA: 0x00006B88 File Offset: 0x00004D88
[Token(Token = "0x6000CE2")]
[Address(RVA = "0x51B0E0", Offset = "0x519EE0", VA = "0x18051B0E0", 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: 0x06000CE3 RID: 3299 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CE3")]
[Address(RVA = "0x51B130", Offset = "0x519F30", VA = "0x18051B130", Slot = "6")]
public void Reset()
{
}
// Token: 0x040006F0 RID: 1776
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40006F0")]
private IEnumerator enumerator;
}
}