OperationParameterInfoCollection.Item[] Property
Definition
Gets or sets the element at the specified index or key.
Overloads
Item[Int32] |
Gets or sets the element at the specified index. In C#, this property is the indexer for the OperationParameterInfoCollection class. |
Item[String] |
Gets or sets the element with the specified key. |
Item[Int32]
Gets or sets the element at the specified index. In C#, this property is the indexer for the OperationParameterInfoCollection class.
public:
property System::Workflow::Activities::OperationParameterInfo ^ default[int] { System::Workflow::Activities::OperationParameterInfo ^ get(int index); void set(int index, System::Workflow::Activities::OperationParameterInfo ^ value); };
public System.Workflow.Activities.OperationParameterInfo this[int index] { get; set; }
member this.Item(int) : System.Workflow.Activities.OperationParameterInfo with get, set
Default Public Property Item(index As Integer) As OperationParameterInfo
Parameters
- index
- Int32
The array index of the requested element.
Property Value
An OperationParameterInfo object representing the element at the specified index.
Implements
Applies to
Item[String]
Gets or sets the element with the specified key.
public:
property System::Workflow::Activities::OperationParameterInfo ^ default[System::String ^] { System::Workflow::Activities::OperationParameterInfo ^ get(System::String ^ key); };
public System.Workflow.Activities.OperationParameterInfo this[string key] { get; }
member this.Item(string) : System.Workflow.Activities.OperationParameterInfo
Default Public ReadOnly Property Item(key As String) As OperationParameterInfo
Parameters
- key
- String
The key value of the requested element.
Property Value
An OperationParameterInfo object representing the element with the specified key.