Class CpCryptographicAttributeObjectCollection
Inheritance
CpCryptographicAttributeObjectCollection
Assembly: CryptoPro.Security.Cryptography.Pkcs.dll
Syntax
public sealed class CpCryptographicAttributeObjectCollection : ICollection, IEnumerable
Constructors
CpCryptographicAttributeObjectCollection()
Declaration
public CpCryptographicAttributeObjectCollection()
CpCryptographicAttributeObjectCollection(CpCryptographicAttributeObject)
Declaration
public CpCryptographicAttributeObjectCollection(CpCryptographicAttributeObject attribute)
Parameters
CpCryptographicAttributeObjectCollection(CryptographicAttributeObject)
Declaration
public CpCryptographicAttributeObjectCollection(CryptographicAttributeObject attribute)
Parameters
CpCryptographicAttributeObjectCollection(CryptographicAttributeObjectCollection)
Declaration
public CpCryptographicAttributeObjectCollection(CryptographicAttributeObjectCollection collection)
Parameters
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 CpCryptographicAttributeObject 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
Add(CpCryptographicAttributeObject)
Declaration
public int Add(CpCryptographicAttributeObject attribute)
Parameters
Returns
Add(AsnEncodedData)
Declaration
public int Add(AsnEncodedData asnEncodedData)
Parameters
Returns
CopyTo(CpCryptographicAttributeObject[], int)
Declaration
public void CopyTo(CpCryptographicAttributeObject[] array, int index)
Parameters
GetEnumerator()
Declaration
public CpCryptographicAttributeObjectEnumerator GetEnumerator()
Returns
Remove(CpCryptographicAttributeObject)
Declaration
public void Remove(CpCryptographicAttributeObject attribute)
Parameters
ToOriginalCollection()
Declaration
public CryptographicAttributeObjectCollection ToOriginalCollection()
Returns
Implements