CryptographicAttributeObjectCollection.Add Method

Definition

Adds an object to the collection.

Overloads

Add(AsnEncodedData)

Adds the specified AsnEncodedData object to the collection.

Add(CryptographicAttributeObject)

Adds the specified CryptographicAttributeObject object to the collection.

Add(AsnEncodedData)

Source:
CryptographicAttributeObjectCollection.cs
Source:
CryptographicAttributeObjectCollection.cs
Source:
CryptographicAttributeObjectCollection.cs

Adds the specified AsnEncodedData object to the collection.

public:
 int Add(System::Security::Cryptography::AsnEncodedData ^ asnEncodedData);
public int Add (System.Security.Cryptography.AsnEncodedData asnEncodedData);
member this.Add : System.Security.Cryptography.AsnEncodedData -> int
Public Function Add (asnEncodedData As AsnEncodedData) As Integer

Parameters

asnEncodedData
AsnEncodedData

The AsnEncodedData object to add to the collection.

Returns

true if the method returns the zero-based index of the added item; otherwise, false.

Exceptions

asnEncodedData is null.

A cryptographic operation could not be completed.

See also

Applies to

Add(CryptographicAttributeObject)

Source:
CryptographicAttributeObjectCollection.cs
Source:
CryptographicAttributeObjectCollection.cs
Source:
CryptographicAttributeObjectCollection.cs

Adds the specified CryptographicAttributeObject object to the collection.

public:
 int Add(System::Security::Cryptography::CryptographicAttributeObject ^ attribute);
public int Add (System.Security.Cryptography.CryptographicAttributeObject attribute);
member this.Add : System.Security.Cryptography.CryptographicAttributeObject -> int
Public Function Add (attribute As CryptographicAttributeObject) As Integer

Parameters

attribute
CryptographicAttributeObject

The CryptographicAttributeObject object to add to the collection.

Returns

true if the method returns the zero-based index of the added item; otherwise, false.

Exceptions

asnEncodedData is null.

A cryptographic operation could not be completed.

The specified item already exists in the collection.

Examples

Remove

See also

Applies to