Files
27Aug2021-Cpp2IL-Dump/System/Security/Cryptography/OidEnumerator.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020001CD RID: 461
[Token(Token = "0x20001CD")]
public sealed class OidEnumerator : IEnumerator
{
// Token: 0x06000C3A RID: 3130 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C3A")]
[Address(RVA = "0xC76D70", Offset = "0xC75D70", VA = "0x180C76D70")]
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: 0x1700023A RID: 570
// (get) Token: 0x06000C3B RID: 3131 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700023A")]
object IEnumerator.Current
{
[Token(Token = "0x6000C3B")]
[Address(RVA = "0xC76D40", Offset = "0xC75D40", VA = "0x180C76D40", 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: 0x06000C3C RID: 3132 RVA: 0x00006948 File Offset: 0x00004B48
[Token(Token = "0x6000C3C")]
[Address(RVA = "0xC76CE0", Offset = "0xC75CE0", VA = "0x180C76CE0", 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: 0x06000C3D RID: 3133 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C3D")]
[Address(RVA = "0x4EDE50", Offset = "0x4ECE50", VA = "0x1804EDE50", Slot = "6")]
public void Reset()
{
}
// Token: 0x0400066E RID: 1646
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400066E")]
private OidCollection m_oids;
// Token: 0x0400066F RID: 1647
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400066F")]
private int m_current;
}
}