SignerInfoCollection Class
Definition
The SignerInfoCollection class represents a collection of SignerInfo objects. SignerInfoCollection implements the ICollection interface.
public ref class SignerInfoCollection sealed : System::Collections::ICollection
public sealed class SignerInfoCollection : System.Collections.ICollection
type SignerInfoCollection = class
interface ICollection
interface IEnumerable
Public NotInheritable Class SignerInfoCollection
Implements ICollection
- Inheritance
-
SignerInfoCollection
- Implements
Remarks
This class does not have a public constructor; therefore, it cannot be publicly instantiated. It is a read-only class accessible from the SignedCms.SignerInfos property or the SignerInfo.CounterSignerInfos property.
Properties
Count |
The Count property retrieves the number of items in the SignerInfoCollection collection. |
IsSynchronized |
The IsSynchronized property retrieves whether access to the collection is synchronized, or thread safe. This property always returns |
Item[Int32] |
The Item[Int32] property retrieves the SignerInfo object at the specified index in the collection. |
SyncRoot |
The SyncRoot property retrieves an Object object is used to synchronize access to the SignerInfoCollection collection. |
Methods
CopyTo(Array, Int32) |
The CopyTo(Array, Int32) method copies the SignerInfoCollection collection to an array. |
CopyTo(SignerInfo[], Int32) |
The CopyTo(SignerInfo[], Int32) method copies the SignerInfoCollection collection to a SignerInfo array. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetEnumerator() |
The GetEnumerator() method returns a SignerInfoEnumerator object for the SignerInfoCollection collection. |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
Explicit Interface Implementations
IEnumerable.GetEnumerator() |
The IEnumerable.GetEnumerator() method returns a SignerInfoEnumerator object for the SignerInfoCollection collection. |
Extension Methods
Cast<TResult>(IEnumerable) |
Casts the elements of an IEnumerable to the specified type. |
OfType<TResult>(IEnumerable) |
Filters the elements of an IEnumerable based on a specified type. |
AsParallel(IEnumerable) |
Enables parallelization of a query. |
AsQueryable(IEnumerable) |
Converts an IEnumerable to an IQueryable. |