using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Security.Cryptography.X509Certificates
{
/// Defines a collection that stores objects.
// Token: 0x020001E2 RID: 482
[Token(Token = "0x20001E2")]
[Serializable]
public class X509CertificateCollection : CollectionBase
{
/// Initializes a new instance of the class.
// Token: 0x06000CA6 RID: 3238 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CA6")]
[Address(RVA = "0x839930", Offset = "0x838930", VA = "0x180839930")]
public X509CertificateCollection()
{
}
/// Initializes a new instance of the class from another .
/// The with which to initialize the new object.
// Token: 0x06000CA7 RID: 3239 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CA7")]
[Address(RVA = "0xC8D820", Offset = "0xC8C820", VA = "0x180C8D820")]
public X509CertificateCollection(X509CertificateCollection value)
{
}
/// Gets or sets the entry at the specified index of the current .
/// The zero-based index of the entry to locate in the current .
/// The at the specified index of the current .
/// The parameter is outside the valid range of indexes for the collection.
// Token: 0x1700025A RID: 602
[Token(Token = "0x1700025A")]
public X509Certificate this[int index]
{
[Token(Token = "0x6000CA8")]
[Address(RVA = "0xC8D9C0", Offset = "0xC8C9C0", VA = "0x180C8D9C0")]
get
{
return null;
}
}
/// Adds an with the specified value to the current .
/// The to add to the current .
/// The index into the current at which the new was inserted.
// Token: 0x06000CA9 RID: 3241 RVA: 0x00006AC8 File Offset: 0x00004CC8
[Token(Token = "0x6000CA9")]
[Address(RVA = "0xC8D6C0", Offset = "0xC8C6C0", VA = "0x180C8D6C0")]
public int Add(X509Certificate value)
{
return 0;
}
/// Copies the elements of the specified to the end of the current .
/// The containing the objects to add to the collection.
/// The parameter is .
// Token: 0x06000CAA RID: 3242 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CAA")]
[Address(RVA = "0xC8D530", Offset = "0xC8C530", VA = "0x180C8D530")]
public void AddRange(X509CertificateCollection value)
{
}
/// Returns an enumerator that can iterate through the .
/// An enumerator of the subelements of you can use to iterate through the collection.
// Token: 0x06000CAB RID: 3243 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CAB")]
[Address(RVA = "0xC8D760", Offset = "0xC8C760", VA = "0x180C8D760")]
public new X509CertificateCollection.X509CertificateEnumerator GetEnumerator()
{
return null;
}
/// Builds a hash value based on all values contained in the current .
/// A hash value based on all values contained in the current .
// Token: 0x06000CAC RID: 3244 RVA: 0x00006AE0 File Offset: 0x00004CE0
[Token(Token = "0x6000CAC")]
[Address(RVA = "0xC8D7F0", Offset = "0xC8C7F0", VA = "0x180C8D7F0", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// Enumerates the objects in an .
// Token: 0x020001E3 RID: 483
[Token(Token = "0x20001E3")]
public class X509CertificateEnumerator : IEnumerator
{
/// Initializes a new instance of the class for the specified .
/// The to enumerate.
// Token: 0x06000CAD RID: 3245 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CAD")]
[Address(RVA = "0xC8DBB0", Offset = "0xC8CBB0", VA = "0x180C8DBB0")]
public X509CertificateEnumerator(X509CertificateCollection mappings)
{
}
/// Gets the current in the .
/// The current in the .
/// The enumerator is positioned before the first element of the collection or after the last element.
// Token: 0x1700025B RID: 603
// (get) Token: 0x06000CAE RID: 3246 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700025B")]
public X509Certificate Current
{
[Token(Token = "0x6000CAE")]
[Address(RVA = "0xC8DC10", Offset = "0xC8CC10", VA = "0x180C8DC10")]
get
{
return null;
}
}
/// For a description of this member, see .
/// The current X.509 certificate object in the object.
/// The enumerator is positioned before the first element of the collection or after the last element.
// Token: 0x1700025C RID: 604
// (get) Token: 0x06000CAF RID: 3247 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700025C")]
object IEnumerator.Current
{
[Token(Token = "0x6000CAF")]
[Address(RVA = "0xC8DB60", Offset = "0xC8CB60", VA = "0x180C8DB60", Slot = "5")]
get
{
return null;
}
}
/// For a description of this member, see .
///
/// if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the collection.
/// The collection was modified after the enumerator was instantiated.
// Token: 0x06000CB0 RID: 3248 RVA: 0x00006AF8 File Offset: 0x00004CF8
[Token(Token = "0x6000CB0")]
[Address(RVA = "0xC8DAC0", Offset = "0xC8CAC0", VA = "0x180C8DAC0", Slot = "4")]
bool IEnumerator.MoveNext()
{
return default(bool);
}
/// For a description of this member, see .
/// The collection was modified after the enumerator was instantiated.
// Token: 0x06000CB1 RID: 3249 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CB1")]
[Address(RVA = "0xC8DB10", Offset = "0xC8CB10", VA = "0x180C8DB10", Slot = "6")]
void IEnumerator.Reset()
{
}
/// Advances the enumerator to the next element of the collection.
///
/// if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the collection.
/// The collection was modified after the enumerator was instantiated.
// Token: 0x06000CB2 RID: 3250 RVA: 0x00006B10 File Offset: 0x00004D10
[Token(Token = "0x6000CB2")]
[Address(RVA = "0xC8DA70", Offset = "0xC8CA70", VA = "0x180C8DA70")]
public bool MoveNext()
{
return default(bool);
}
// Token: 0x040006DF RID: 1759
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40006DF")]
private IEnumerator enumerator;
}
}
}