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

66 lines
2.6 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Provides the ability to navigate through an <see cref="T:System.Security.Cryptography.OidCollection" /> object. This class cannot be inherited.</summary>
// Token: 0x020001D1 RID: 465
[Token(Token = "0x20001D1")]
public sealed class OidEnumerator : IEnumerator
{
// Token: 0x06000C50 RID: 3152 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C50")]
[Address(RVA = "0x503A20", Offset = "0x502820", VA = "0x180503A20")]
internal OidEnumerator(OidCollection oids)
{
}
/// <summary>Gets the current <see cref="T:System.Security.Cryptography.Oid" /> object in an <see cref="T:System.Security.Cryptography.OidCollection" /> object.</summary>
/// <returns>The current <see cref="T:System.Security.Cryptography.Oid" /> object.</returns>
// Token: 0x1700023E RID: 574
// (get) Token: 0x06000C51 RID: 3153 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700023E")]
object IEnumerator.Current
{
[Token(Token = "0x6000C51")]
[Address(RVA = "0x5039F0", Offset = "0x5027F0", VA = "0x1805039F0", Slot = "5")]
get
{
return null;
}
}
/// <summary>Advances to the next <see cref="T:System.Security.Cryptography.Oid" /> object in an <see cref="T:System.Security.Cryptography.OidCollection" /> 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: 0x06000C52 RID: 3154 RVA: 0x00006960 File Offset: 0x00004B60
[Token(Token = "0x6000C52")]
[Address(RVA = "0x503990", Offset = "0x502790", VA = "0x180503990", Slot = "4")]
public bool MoveNext()
{
return default(bool);
}
/// <summary>Sets an enumerator to its initial position.</summary>
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
// Token: 0x06000C53 RID: 3155 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C53")]
[Address(RVA = "0x45BBE0", Offset = "0x45A9E0", VA = "0x18045BBE0", Slot = "6")]
public void Reset()
{
}
// Token: 0x0400067B RID: 1659
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400067B")]
private OidCollection m_oids;
// Token: 0x0400067C RID: 1660
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400067C")]
private int m_current;
}
}