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

49 lines
2.5 KiB
C#

using System;
using System.Reflection;
using Cpp2IlInjected;
namespace System.Security.Cryptography.X509Certificates
{
/// <summary>Represents a collection of <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> objects. This class cannot be inherited.</summary>
// Token: 0x020001E2 RID: 482
[Token(Token = "0x20001E2")]
[DefaultMember("Item")]
public class X509Certificate2Collection : X509CertificateCollection
{
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> class without any <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> information.</summary>
// Token: 0x06000C8C RID: 3212 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C8C")]
[Address(RVA = "0x5174E0", Offset = "0x5162E0", VA = "0x1805174E0")]
public X509Certificate2Collection()
{
}
/// <summary>Adds an object to the end of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" />.</summary>
/// <param name="certificate">An X.509 certificate represented as an <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object.</param>
/// <returns>The <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> index at which the <paramref name="certificate" /> has been added.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="certificate" /> is <see langword="null" />.</exception>
// Token: 0x06000C8D RID: 3213 RVA: 0x00006A20 File Offset: 0x00004C20
[Token(Token = "0x6000C8D")]
[Address(RVA = "0x517300", Offset = "0x516100", VA = "0x180517300")]
public int Add(X509Certificate2 certificate)
{
return 0;
}
/// <summary>Returns an enumerator that can iterate through a <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
/// <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator" /> object that can iterate through the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</returns>
// Token: 0x06000C8E RID: 3214 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C8E")]
[Address(RVA = "0x5173A0", Offset = "0x5161A0", VA = "0x1805173A0")]
public new X509Certificate2Enumerator GetEnumerator()
{
return null;
}
// Token: 0x040006DE RID: 1758
[Token(Token = "0x40006DE")]
private static string[] newline_split;
}
}