RecipientInfoCollection Class
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.
The RecipientInfoCollection class represents a collection of RecipientInfo objects. RecipientInfoCollection implements the ICollection interface.
public ref class RecipientInfoCollection sealed : System::Collections::ICollection
public sealed class RecipientInfoCollection : System.Collections.ICollection
type RecipientInfoCollection = class
interface ICollection
interface IEnumerable
Public NotInheritable Class RecipientInfoCollection
Implements ICollection
- Inheritance
-
RecipientInfoCollection
- 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 EnvelopedCms.RecipientInfos property.
Properties
Count |
The Count property retrieves the number of items in the RecipientInfoCollection 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 RecipientInfo object at the specified index in the collection. |
SyncRoot |
The SyncRoot property retrieves an Object object used to synchronize access to the RecipientInfoCollection collection. |
Methods
CopyTo(Array, Int32) |
The CopyTo(Array, Int32) method copies the RecipientInfoCollection collection to an array. |
CopyTo(RecipientInfo[], Int32) |
The CopyTo(RecipientInfo[], Int32) method copies the RecipientInfoCollection collection to a RecipientInfo array. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetEnumerator() |
The GetEnumerator() method returns a RecipientInfoEnumerator object for the RecipientInfoCollection 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
ICollection.IsSynchronized |
Gets a value indicating whether access to the ICollection is synchronized (thread safe). |
ICollection.SyncRoot |
Gets an object that can be used to synchronize access to the ICollection. |
IEnumerable.GetEnumerator() |
The IEnumerable.GetEnumerator() method returns a RecipientInfoEnumerator object for the RecipientInfoCollection 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. |