This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,124 @@
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: 0x020001CC RID: 460
[Token(Token = "0x20001CC")]
public sealed class OidCollection : ICollection, IEnumerable
{
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.OidCollection" /> class.</summary>
// Token: 0x06000C32 RID: 3122 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C32")]
[Address(RVA = "0xC76C00", Offset = "0xC75C00", VA = "0x180C76C00")]
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: 0x06000C33 RID: 3123 RVA: 0x00006900 File Offset: 0x00004B00
[Token(Token = "0x6000C33")]
[Address(RVA = "0xBA4710", Offset = "0xBA3710", VA = "0x180BA4710")]
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: 0x17000236 RID: 566
[Token(Token = "0x17000236")]
public Oid this[int index]
{
[Token(Token = "0x6000C34")]
[Address(RVA = "0xC76C60", Offset = "0xC75C60", VA = "0x180C76C60")]
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: 0x17000237 RID: 567
// (get) Token: 0x06000C35 RID: 3125 RVA: 0x00006918 File Offset: 0x00004B18
[Token(Token = "0x17000237")]
public int Count
{
[Token(Token = "0x6000C35")]
[Address(RVA = "0x478810", Offset = "0x477810", VA = "0x180478810", 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: 0x06000C36 RID: 3126 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C36")]
[Address(RVA = "0xC76BA0", Offset = "0xC75BA0", VA = "0x180C76BA0", 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: 0x06000C37 RID: 3127 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C37")]
[Address(RVA = "0xC76940", Offset = "0xC75940", VA = "0x180C76940", 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: 0x17000238 RID: 568
// (get) Token: 0x06000C38 RID: 3128 RVA: 0x00006930 File Offset: 0x00004B30
[Token(Token = "0x17000238")]
public bool IsSynchronized
{
[Token(Token = "0x6000C38")]
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", 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: 0x17000239 RID: 569
// (get) Token: 0x06000C39 RID: 3129 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000239")]
public object SyncRoot
{
[Token(Token = "0x6000C39")]
[Address(RVA = "0x4A65C0", Offset = "0x4A55C0", VA = "0x1804A65C0", Slot = "6")]
get
{
return null;
}
}
// Token: 0x0400066D RID: 1645
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400066D")]
private ArrayList m_list;
}
}