using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Represents a collection of objects. This class cannot be inherited.
// Token: 0x020001CC RID: 460
[Token(Token = "0x20001CC")]
public sealed class OidCollection : ICollection, IEnumerable
{
/// Initializes a new instance of the class.
// Token: 0x06000C32 RID: 3122 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C32")]
[Address(RVA = "0xC76C00", Offset = "0xC75C00", VA = "0x180C76C00")]
public OidCollection()
{
}
/// Adds an object to the object.
/// The object to add to the collection.
/// The index of the added object.
// Token: 0x06000C33 RID: 3123 RVA: 0x00006900 File Offset: 0x00004B00
[Token(Token = "0x6000C33")]
[Address(RVA = "0xBA4710", Offset = "0xBA3710", VA = "0x180BA4710")]
public int Add(Oid oid)
{
return 0;
}
/// Gets an object from the object.
/// The location of the object in the collection.
/// An object.
// Token: 0x17000236 RID: 566
[Token(Token = "0x17000236")]
public Oid this[int index]
{
[Token(Token = "0x6000C34")]
[Address(RVA = "0xC76C60", Offset = "0xC75C60", VA = "0x180C76C60")]
get
{
return null;
}
}
/// Gets the number of objects in a collection.
/// The number of objects in a collection.
// Token: 0x17000237 RID: 567
// (get) Token: 0x06000C35 RID: 3125 RVA: 0x00006918 File Offset: 0x00004B18
[Token(Token = "0x17000237")]
public int Count
{
[Token(Token = "0x6000C35")]
[Address(RVA = "0x478810", Offset = "0x477810", VA = "0x180478810", Slot = "5")]
get
{
return 0;
}
}
/// Returns an object that can be used to navigate the object.
/// An object that can be used to navigate the collection.
// Token: 0x06000C36 RID: 3126 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C36")]
[Address(RVA = "0xC76BA0", Offset = "0xC75BA0", VA = "0x180C76BA0", Slot = "8")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
/// Copies the object into an array.
/// The array to copy the object to.
/// The location where the copy operation starts.
///
/// cannot be a multidimensional array.
/// -or-
/// The length of is an invalid offset length.
///
/// is .
/// The value of is out range.
// Token: 0x06000C37 RID: 3127 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C37")]
[Address(RVA = "0xC76940", Offset = "0xC75940", VA = "0x180C76940", Slot = "4")]
void ICollection.CopyTo(Array array, int index)
{
}
/// Gets a value that indicates whether access to the object is thread safe.
///
/// in all cases.
// Token: 0x17000238 RID: 568
// (get) Token: 0x06000C38 RID: 3128 RVA: 0x00006930 File Offset: 0x00004B30
[Token(Token = "0x17000238")]
public bool IsSynchronized
{
[Token(Token = "0x6000C38")]
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "7")]
get
{
return default(bool);
}
}
/// Gets an object that can be used to synchronize access to the object.
/// An object that can be used to synchronize access to the object.
// Token: 0x17000239 RID: 569
// (get) Token: 0x06000C39 RID: 3129 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000239")]
public object SyncRoot
{
[Token(Token = "0x6000C39")]
[Address(RVA = "0x4A65C0", Offset = "0x4A55C0", VA = "0x1804A65C0", Slot = "6")]
get
{
return null;
}
}
// Token: 0x0400066D RID: 1645
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400066D")]
private ArrayList m_list;
}
}