ActivityCollection.Item[] 속성

정의

이름 또는 인덱스 Activity 별로 항목을 ICollection 가져옵니다.

오버로드

Name Description
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대한 고유 식별자입니다.

속성 값

호출에 ActivityICollection 지정된 ; 키의 멤버 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

에 대한 인덱스(0부터 시작하는 인덱스)ICollection

속성 값

호출에서 인덱 ICollection 스가 ICollection지정된 멤버 활동입니다.

구현

예외

index에서 유효한 인덱스가 아닌 경우 IList

속성이 설정되고 IList 읽기 전용입니다.

이 아닌 Object값으로 Activity 설정하려는 시도입니다.

적용 대상