Files
Aug2021-Cpp2IL-Dump/System/Security/Cryptography/OidCollection.cs
T
2026-04-10 22:50:51 +02:00

125 lines
5.3 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Represents a collection of <see cref="T:System.Security.Cryptography.Oid" /> objects. This class cannot be inherited.</summary>
// Token: 0x020001D0 RID: 464
[Token(Token = "0x20001D0")]
public sealed class OidCollection : ICollection, IEnumerable
{
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.OidCollection" /> class.</summary>
// Token: 0x06000C48 RID: 3144 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C48")]
[Address(RVA = "0x5038B0", Offset = "0x5026B0", VA = "0x1805038B0")]
public OidCollection()
{
}
/// <summary>Adds an <see cref="T:System.Security.Cryptography.Oid" /> object to the <see cref="T:System.Security.Cryptography.OidCollection" /> object.</summary>
/// <param name="oid">The <see cref="T:System.Security.Cryptography.Oid" /> object to add to the collection.</param>
/// <returns>The index of the added <see cref="T:System.Security.Cryptography.Oid" /> object.</returns>
// Token: 0x06000C49 RID: 3145 RVA: 0x00006918 File Offset: 0x00004B18
[Token(Token = "0x6000C49")]
[Address(RVA = "0x4A7BD0", Offset = "0x4A69D0", VA = "0x1804A7BD0")]
public int Add(Oid oid)
{
return 0;
}
/// <summary>Gets an <see cref="T:System.Security.Cryptography.Oid" /> object from the <see cref="T:System.Security.Cryptography.OidCollection" /> object.</summary>
/// <param name="index">The location of the <see cref="T:System.Security.Cryptography.Oid" /> object in the collection.</param>
/// <returns>An <see cref="T:System.Security.Cryptography.Oid" /> object.</returns>
// Token: 0x1700023A RID: 570
[Token(Token = "0x1700023A")]
public Oid this[int index]
{
[Token(Token = "0x6000C4A")]
[Address(RVA = "0x503910", Offset = "0x502710", VA = "0x180503910")]
get
{
return null;
}
}
/// <summary>Gets the number of <see cref="T:System.Security.Cryptography.Oid" /> objects in a collection.</summary>
/// <returns>The number of <see cref="T:System.Security.Cryptography.Oid" /> objects in a collection.</returns>
// Token: 0x1700023B RID: 571
// (get) Token: 0x06000C4B RID: 3147 RVA: 0x00006930 File Offset: 0x00004B30
[Token(Token = "0x1700023B")]
public int Count
{
[Token(Token = "0x6000C4B")]
[Address(RVA = "0x4A64A0", Offset = "0x4A52A0", VA = "0x1804A64A0", Slot = "5")]
get
{
return 0;
}
}
/// <summary>Returns an <see cref="T:System.Security.Cryptography.OidEnumerator" /> object that can be used to navigate the <see cref="T:System.Security.Cryptography.OidCollection" /> object.</summary>
/// <returns>An <see cref="T:System.Security.Cryptography.OidEnumerator" /> object that can be used to navigate the collection.</returns>
// Token: 0x06000C4C RID: 3148 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C4C")]
[Address(RVA = "0x503850", Offset = "0x502650", VA = "0x180503850", Slot = "8")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// <summary>Copies the <see cref="T:System.Security.Cryptography.OidCollection" /> object into an array.</summary>
/// <param name="array">The array to copy the <see cref="T:System.Security.Cryptography.OidCollection" /> object to.</param>
/// <param name="index">The location where the copy operation starts.</param>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="array" /> cannot be a multidimensional array.
/// -or-
/// The length of <paramref name="array" /> is an invalid offset length.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="array" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="index" /> is out range.</exception>
// Token: 0x06000C4D RID: 3149 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C4D")]
[Address(RVA = "0x5035F0", Offset = "0x5023F0", VA = "0x1805035F0", Slot = "4")]
void ICollection.CopyTo(Array array, int index)
{
}
/// <summary>Gets a value that indicates whether access to the <see cref="T:System.Security.Cryptography.OidCollection" /> object is thread safe.</summary>
/// <returns>
/// <see langword="false" /> in all cases.</returns>
// Token: 0x1700023C RID: 572
// (get) Token: 0x06000C4E RID: 3150 RVA: 0x00006948 File Offset: 0x00004B48
[Token(Token = "0x1700023C")]
public bool IsSynchronized
{
[Token(Token = "0x6000C4E")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "7")]
get
{
return default(bool);
}
}
/// <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Security.Cryptography.OidCollection" /> object.</summary>
/// <returns>An object that can be used to synchronize access to the <see cref="T:System.Security.Cryptography.OidCollection" /> object.</returns>
// Token: 0x1700023D RID: 573
// (get) Token: 0x06000C4F RID: 3151 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700023D")]
public object SyncRoot
{
[Token(Token = "0x6000C4F")]
[Address(RVA = "0x434BD0", Offset = "0x4339D0", VA = "0x180434BD0", Slot = "6")]
get
{
return null;
}
}
// Token: 0x0400067A RID: 1658
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400067A")]
private ArrayList m_list;
}
}