CryptographicAttributeObjectCollection.Add Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
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)
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.