ActivityCollection::IList<Activity^>::Item Property (Int32)

 

Gets or sets the element at the specified index.

Namespace:   System.Workflow.ComponentModel
Assembly:  System.Workflow.ComponentModel (in System.Workflow.ComponentModel.dll)

private:
property Activity^ default[
	int index
] {
	virtual Activity^ get(int index) sealed = IList<Activity^>::default::get;
	virtual void set(int index, Activity^ value) sealed = IList<Activity^>::default::set;
}

Parameters

index
Type: System::Int32

The zero-based index of the element to get or set.

Property Value

Type: System.Workflow.ComponentModel::Activity^

The Object at the specified index.

Exception Condition
ArgumentOutOfRangeException

index is not a valid index in the IList.

NotSupportedException

The ICollection is read-only.

This property provides the ability to access a specific element in the collection by using the following syntax: myCollection[index].

The C# language uses the this keyword to define the indexers instead of implementing the Item property. Visual Basic implements Item as a default property, which provides the same indexing functionality.

.NET Framework
Available since 3.0
Return to top
Show: