m
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
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: 0x020001DE RID: 478
|
||||
[Token(Token = "0x20001DE")]
|
||||
[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: 0x06000C76 RID: 3190 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C76")]
|
||||
[Address(RVA = "0x839930", Offset = "0x838930", VA = "0x180839930")]
|
||||
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: 0x06000C77 RID: 3191 RVA: 0x00006A08 File Offset: 0x00004C08
|
||||
[Token(Token = "0x6000C77")]
|
||||
[Address(RVA = "0xC8A5E0", Offset = "0xC895E0", VA = "0x180C8A5E0")]
|
||||
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: 0x06000C78 RID: 3192 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000C78")]
|
||||
[Address(RVA = "0xC8A680", Offset = "0xC89680", VA = "0x180C8A680")]
|
||||
public new X509Certificate2Enumerator GetEnumerator()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x040006D1 RID: 1745
|
||||
[Token(Token = "0x40006D1")]
|
||||
private static string[] newline_split;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user