Class CpOidCollection
Inheritance
CpOidCollection
Assembly: CryptoPro.Security.Cryptography.dll
Syntax
public sealed class CpOidCollection : ICollection, IEnumerable
Constructors
CpOidCollection()
Declaration
Properties
Count
Gets the number of elements contained in the ICollection.
Declaration
public int Count { get; }
Property Value
Type |
Description |
int |
The number of elements contained in the ICollection.
|
IsSynchronized
Gets a value indicating whether access to the ICollection is synchronized (thread safe).
Declaration
public bool IsSynchronized { get; }
Property Value
this[int]
Declaration
public CpOid this[int index] { get; }
Parameters
Type |
Name |
Description |
int |
index |
|
Property Value
this[string]
Declaration
public CpOid this[string oid] { get; }
Parameters
Type |
Name |
Description |
string |
oid |
|
Property Value
SyncRoot
Gets an object that can be used to synchronize access to the ICollection.
Declaration
public object SyncRoot { get; }
Property Value
Type |
Description |
object |
An object that can be used to synchronize access to the ICollection.
|
Methods
Add(CpOid)
Declaration
public int Add(CpOid oid)
Parameters
Type |
Name |
Description |
CpOid |
oid |
|
Returns
CopyTo(CpOid[], int)
Declaration
public void CopyTo(CpOid[] array, int index)
Parameters
Type |
Name |
Description |
CpOid[] |
array |
|
int |
index |
|
GetEnumerator()
Declaration
public CpOidEnumerator GetEnumerator()
Returns
Implements