using System; using System.Reflection; using Cpp2IlInjected; namespace System.Security.Cryptography.X509Certificates { /// Represents a collection of objects. This class cannot be inherited. // Token: 0x020001E2 RID: 482 [Token(Token = "0x20001E2")] [DefaultMember("Item")] public class X509Certificate2Collection : X509CertificateCollection { /// Initializes a new instance of the class without any information. // Token: 0x06000C8C RID: 3212 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000C8C")] [Address(RVA = "0x5174E0", Offset = "0x5162E0", VA = "0x1805174E0")] public X509Certificate2Collection() { } /// Adds an object to the end of the . /// An X.509 certificate represented as an object. /// The index at which the has been added. /// /// is . // 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; } /// Returns an enumerator that can iterate through a object. /// An object that can iterate through the object. // 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; } }