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

90 lines
4.2 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Security.Cryptography.X509Certificates
{
/// <summary>Supports a simple iteration over a <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object. This class cannot be inherited.</summary>
// Token: 0x020001E3 RID: 483
[Token(Token = "0x20001E3")]
public sealed class X509Certificate2Enumerator : IEnumerator
{
// Token: 0x06000C90 RID: 3216 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C90")]
[Address(RVA = "0x517630", Offset = "0x516430", VA = "0x180517630")]
internal X509Certificate2Enumerator(X509Certificate2Collection collection)
{
}
/// <summary>Gets the current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
/// <returns>The current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x17000251 RID: 593
// (get) Token: 0x06000C91 RID: 3217 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000251")]
public X509Certificate2 Current
{
[Token(Token = "0x6000C91")]
[Address(RVA = "0x517690", Offset = "0x516490", VA = "0x180517690")]
get
{
return null;
}
}
/// <summary>Advances the enumerator to the next element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</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: 0x06000C92 RID: 3218 RVA: 0x00006A38 File Offset: 0x00004C38
[Token(Token = "0x6000C92")]
[Address(RVA = "0x5174F0", Offset = "0x5162F0", VA = "0x1805174F0")]
public bool MoveNext()
{
return default(bool);
}
/// <summary>For a description of this member, see <see cref="P:System.Collections.IEnumerator.Current" />.</summary>
/// <returns>The current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x17000252 RID: 594
// (get) Token: 0x06000C93 RID: 3219 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000252")]
object IEnumerator.Current
{
[Token(Token = "0x6000C93")]
[Address(RVA = "0x5175E0", Offset = "0x5163E0", VA = "0x1805175E0", Slot = "5")]
get
{
return null;
}
}
/// <summary>For a description of this member, see <see cref="M:System.Collections.IEnumerator.MoveNext" />.</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: 0x06000C94 RID: 3220 RVA: 0x00006A50 File Offset: 0x00004C50
[Token(Token = "0x6000C94")]
[Address(RVA = "0x517540", Offset = "0x516340", VA = "0x180517540", Slot = "4")]
bool IEnumerator.MoveNext()
{
return default(bool);
}
/// <summary>For a description of this member, see <see cref="M:System.Collections.IEnumerator.Reset" />.</summary>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06000C95 RID: 3221 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C95")]
[Address(RVA = "0x517590", Offset = "0x516390", VA = "0x180517590", Slot = "6")]
void IEnumerator.Reset()
{
}
// Token: 0x040006DF RID: 1759
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40006DF")]
private IEnumerator enumerator;
}
}