RecipientInfoCollection 类

定义

RecipientInfoCollection 类表示 RecipientInfo 对象的集合。 RecipientInfoCollection 实现 ICollection 接口。

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
继承
RecipientInfoCollection
实现

注解

此类没有公共构造函数;因此,无法公开实例化它。 它是可从属性访问的 EnvelopedCms.RecipientInfos 只读类。

属性

Count

Count 属性检索 RecipientInfoCollection 集合中的项数。

IsSynchronized

IsSynchronized 属性检索对集合的访问是否为同步的,即线程安全的。 此属性始终返回 false,表示集合不是线程安全的。

Item[Int32]

Item[Int32] 属性检索集合中指定索引处的 RecipientInfo 对象。

SyncRoot

SyncRoot 属性检索用于同步访问 Object 集合的 RecipientInfoCollection 对象。

方法

CopyTo(Array, Int32)

CopyTo(Array, Int32) 方法将 RecipientInfoCollection 集合复制到一个数组中。

CopyTo(RecipientInfo[], Int32)

CopyTo(RecipientInfo[], Int32) 方法将 RecipientInfoCollection 集合复制到 RecipientInfo 数组中。

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetEnumerator()

GetEnumerator() 方法为 RecipientInfoEnumerator 集合返回一个 RecipientInfoCollection 对象。

GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

显式接口实现

ICollection.IsSynchronized

获取一个值,该值指示是否同步对 ICollection 的访问(线程安全)。

ICollection.SyncRoot

获取可用于同步对 ICollection 的访问的对象。

IEnumerable.GetEnumerator()

IEnumerable.GetEnumerator() 方法为 RecipientInfoEnumerator 集合返回一个 RecipientInfoCollection 对象。

扩展方法

Cast<TResult>(IEnumerable)

IEnumerable 的元素强制转换为指定的类型。

OfType<TResult>(IEnumerable)

根据指定类型筛选 IEnumerable 的元素。

AsParallel(IEnumerable)

启用查询的并行化。

AsQueryable(IEnumerable)

IEnumerable 转换为 IQueryable

适用于