C# Class Microsoft.Xades.CertCollection

Collection class that derives from ArrayList. It provides the minimally required functionality to add instances of typed classes and obtain typed elements through a custom indexer.
Inheritance: System.Collections.ArrayList
Mostra file Open project: nonorganic/dssnet Class Usage Examples

Public Methods

Method Description
Add ( ) : Cert

Add new typed object to the collection

Add ( Cert objectToAdd ) : Cert

Add typed object to the collection

this ( int index ) : Cert

New typed indexer for the collection

Method Details

Add() public method

Add new typed object to the collection
public Add ( ) : Cert
return Cert

Add() public method

Add typed object to the collection
public Add ( Cert objectToAdd ) : Cert
objectToAdd Cert Typed object to be added to collection
return Cert

this() public method

New typed indexer for the collection
public this ( int index ) : Cert
index int Index of the object to retrieve from collection
return Cert