Class CpX509ExtensionCollection
Inheritance
CpX509ExtensionCollection
Assembly: CryptoPro.Security.Cryptography.dll
Syntax
public sealed class CpX509ExtensionCollection : ICollection, IEnumerable<CpX509Extension>, IEnumerable
Constructors
CpX509ExtensionCollection()
Declaration
public CpX509ExtensionCollection()
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 CpX509Extension this[int index] { get; }
Parameters
Type |
Name |
Description |
int |
index |
|
Property Value
this[string]
Declaration
public CpX509Extension? 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(CpX509Extension)
Declaration
public int Add(CpX509Extension extension)
Parameters
Returns
CopyTo(CpX509Extension[], int)
Declaration
public void CopyTo(CpX509Extension[] array, int index)
Parameters
GetEnumerator()
Declaration
public CpX509ExtensionEnumerator GetEnumerator()
Returns
Implements