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

173 lines
10 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Security.Cryptography.X509Certificates
{
/// <summary>Defines a collection that stores <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> objects.</summary>
// Token: 0x020001E6 RID: 486
[Token(Token = "0x20001E6")]
[Serializable]
public class X509CertificateCollection : CollectionBase
{
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> class.</summary>
// Token: 0x06000CBC RID: 3260 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CBC")]
[Address(RVA = "0x5174E0", Offset = "0x5162E0", VA = "0x1805174E0")]
public X509CertificateCollection()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> class from another <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
/// <param name="value">The <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> with which to initialize the new object.</param>
// Token: 0x06000CBD RID: 3261 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CBD")]
[Address(RVA = "0x51A5B0", Offset = "0x5193B0", VA = "0x18051A5B0")]
public X509CertificateCollection(X509CertificateCollection value)
{
}
/// <summary>Gets or sets the entry at the specified index of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
/// <param name="index">The zero-based index of the entry to locate in the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</param>
/// <returns>The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> at the specified index of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is outside the valid range of indexes for the collection.</exception>
// Token: 0x1700025E RID: 606
[Token(Token = "0x1700025E")]
public X509Certificate this[int index]
{
[Token(Token = "0x6000CBE")]
[Address(RVA = "0x51A750", Offset = "0x519550", VA = "0x18051A750")]
get
{
return null;
}
}
/// <summary>Adds an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> with the specified value to the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
/// <param name="value">The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> to add to the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</param>
/// <returns>The index into the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> at which the new <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> was inserted.</returns>
// Token: 0x06000CBF RID: 3263 RVA: 0x00006AE0 File Offset: 0x00004CE0
[Token(Token = "0x6000CBF")]
[Address(RVA = "0x51A450", Offset = "0x519250", VA = "0x18051A450")]
public int Add(X509Certificate value)
{
return 0;
}
/// <summary>Copies the elements of the specified <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> to the end of the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
/// <param name="value">The <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> containing the objects to add to the collection.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is <see langword="null" />.</exception>
// Token: 0x06000CC0 RID: 3264 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CC0")]
[Address(RVA = "0x51A2C0", Offset = "0x5190C0", VA = "0x18051A2C0")]
public void AddRange(X509CertificateCollection value)
{
}
/// <summary>Returns an enumerator that can iterate through the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
/// <returns>An enumerator of the subelements of <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> you can use to iterate through the collection.</returns>
// Token: 0x06000CC1 RID: 3265 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CC1")]
[Address(RVA = "0x51A4F0", Offset = "0x5192F0", VA = "0x18051A4F0")]
public new X509CertificateCollection.X509CertificateEnumerator GetEnumerator()
{
return null;
}
/// <summary>Builds a hash value based on all values contained in the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
/// <returns>A hash value based on all values contained in the current <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</returns>
// Token: 0x06000CC2 RID: 3266 RVA: 0x00006AF8 File Offset: 0x00004CF8
[Token(Token = "0x6000CC2")]
[Address(RVA = "0x51A580", Offset = "0x519380", VA = "0x18051A580", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Enumerates the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> objects in an <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
// Token: 0x020001E7 RID: 487
[Token(Token = "0x20001E7")]
public class X509CertificateEnumerator : IEnumerator
{
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection.X509CertificateEnumerator" /> class for the specified <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
/// <param name="mappings">The <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> to enumerate.</param>
// Token: 0x06000CC3 RID: 3267 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CC3")]
[Address(RVA = "0x51A940", Offset = "0x519740", VA = "0x18051A940")]
public X509CertificateEnumerator(X509CertificateCollection mappings)
{
}
/// <summary>Gets the current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> in the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</summary>
/// <returns>The current <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate" /> in the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.</returns>
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
// Token: 0x1700025F RID: 607
// (get) Token: 0x06000CC4 RID: 3268 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700025F")]
public X509Certificate Current
{
[Token(Token = "0x6000CC4")]
[Address(RVA = "0x51A9A0", Offset = "0x5197A0", VA = "0x18051A9A0")]
get
{
return null;
}
}
/// <summary>For a description of this member, see <see cref="P:System.Collections.IEnumerator.Current" />.</summary>
/// <returns>The current X.509 certificate object in the <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> 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: 0x17000260 RID: 608
// (get) Token: 0x06000CC5 RID: 3269 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000260")]
object IEnumerator.Current
{
[Token(Token = "0x6000CC5")]
[Address(RVA = "0x51A8F0", Offset = "0x5196F0", VA = "0x18051A8F0", 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 instantiated.</exception>
// Token: 0x06000CC6 RID: 3270 RVA: 0x00006B10 File Offset: 0x00004D10
[Token(Token = "0x6000CC6")]
[Address(RVA = "0x51A850", Offset = "0x519650", VA = "0x18051A850", 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 instantiated.</exception>
// Token: 0x06000CC7 RID: 3271 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CC7")]
[Address(RVA = "0x51A8A0", Offset = "0x5196A0", VA = "0x18051A8A0", Slot = "6")]
void IEnumerator.Reset()
{
}
/// <summary>Advances the enumerator to the next element of the collection.</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 instantiated.</exception>
// Token: 0x06000CC8 RID: 3272 RVA: 0x00006B28 File Offset: 0x00004D28
[Token(Token = "0x6000CC8")]
[Address(RVA = "0x51A800", Offset = "0x519600", VA = "0x18051A800")]
public bool MoveNext()
{
return default(bool);
}
// Token: 0x040006EC RID: 1772
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40006EC")]
private IEnumerator enumerator;
}
}
}