ActivityCollection.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
按名称或索引获取 Activity 中项的 ICollection。
重载
Item[String] |
根据作为唯一键的字符串来获取 ICollection 中的活动。 |
Item[Int32] |
根据索引获取或设置 ICollection 中的活动。 |
Item[String]
根据作为唯一键的字符串来获取 ICollection 中的活动。
public:
property System::Workflow::ComponentModel::Activity ^ default[System::String ^] { System::Workflow::ComponentModel::Activity ^ get(System::String ^ key); };
public System.Workflow.ComponentModel.Activity this[string key] { get; }
member this.Item(string) : System.Workflow.ComponentModel.Activity
Default Public ReadOnly Property Item(key As String) As Activity
参数
- key
- String
ICollection 中活动的唯一标识符。
属性值
Activity 的成员 ICollection;在调用中指定的 ICollection 中的键。
注解
如果 Activity 中没有带指定键的 ICollection,则引发异常。
适用于
Item[Int32]
根据索引获取或设置 ICollection 中的活动。
public:
property System::Workflow::ComponentModel::Activity ^ default[int] { System::Workflow::ComponentModel::Activity ^ get(int index); void set(int index, System::Workflow::ComponentModel::Activity ^ value); };
public System.Workflow.ComponentModel.Activity this[int index] { get; set; }
member this.Item(int) : System.Workflow.ComponentModel.Activity with get, set
Default Public Property Item(index As Integer) As Activity
参数
- index
- Int32
ICollection 中的从零开始的索引。
属性值
ICollection 的成员活动,ICollection 中该活动的索引已在调用中指定。
实现
例外
index
不是 IList 中的有效索引。
设置了该属性,但 IList 为只读。