Class CpX509ChainElementCollection
Inheritance
CpX509ChainElementCollection
Assembly: CryptoPro.Security.Cryptography.dll
Syntax
public sealed class CpX509ChainElementCollection : ICollection, IEnumerable<CpX509ChainElement>, IEnumerable
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 CpX509ChainElement this[int index] { get; }
Parameters
Type |
Name |
Description |
int |
index |
|
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
CopyTo(X509ChainElement[], int)
Declaration
public void CopyTo(X509ChainElement[] array, int index)
Parameters
GetEnumerator()
Declaration
public CpX509ChainElementEnumerator GetEnumerator()
Returns
Implements